I have a application.yml and 4 more files application-local.ym, application-dev.yml, application-qa.yml, application-prod.yml. The way it works is that
spring:
profiles:
active:
@activatedProperties@
Will depending on what @activatedProperties@ is, will pull the correct application so if @activatedProperties@ is local, it will pull application-local.ym.
The problem is that to run
cloud:
config:
server:
awss3:
bucket: hp-fetcher-config
region: us-west-2
order: 1
I need to replace
spring:
profiles:
active:
@activatedProperties@
with
spring:
profiles:
active:
awss3
I cant find any docs or examples that show how to run awss3 in multiple profiles
I have a application.yml and 4 more files application-local.ym, application-dev.yml, application-qa.yml, application-prod.yml. The way it works is that
spring:
profiles:
active:
@activatedProperties@
Will depending on what @activatedProperties@ is, will pull the correct application so if @activatedProperties@ is local, it will pull application-local.ym.
The problem is that to run
cloud:
config:
server:
awss3:
bucket: hp-fetcher-config
region: us-west-2
order: 1
I need to replace
spring:
profiles:
active:
@activatedProperties@
with
spring:
profiles:
active:
awss3
I cant find any docs or examples that show how to run awss3 in multiple profiles