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"