Hello,
I've detected the following behavior when defining profiles using the following values (bootstrap.yml):
spring:
profiles:
active: stage_${DEPLOYMENT_STAGE:PRD}, domain_${LOADBALANCER_DOMAIN:mydomain}, env_${DEPLOYMENT_ENVIRONMENT:px}
Spring reports 6 active profiles, not 3. The reason is: the first 3 profiles are resolved using property substitution. So the result are 3 profiles: stage_PRD, domain_mydomain, env_px (assuming default-values).
But then additional 3 profiles are added: stage_${DEPLOYMENT_STAGE:PRD}, domain_${LOADBALANCER_DOMAIN:mydomain}, env_${DEPLOYMENT_ENVIRONMENT:px}
because the property substitution does not take place a second time.
I found the place: PropertySourceBootstrapConfiguration#resolvePlaceholdersInProfiles does not recognize placeholders inside the profile-value.
Kind regards
Hans