heyimMarc
10/26/2017 - 8:56 AM

sample bootstrap.yml

sample bootstrap.yml

spring:
  profiles:
    active: ${STAGE}

DefaultValue: ${MY_ENV:myDefaultValue}

---

spring:
  profiles: INT

# overrides and adds vars if profile is INT

---

spring:
  profiles: FAT

# overrides and adds vars if profile is FAT

---

spring:
  profiles: PROD

# overrides and adds vars if profile is PROD

DefaultValue: "overridden"