cloud-config-client
cloud-config-client copied to clipboard
Resolver for dynamic $ property coming from Property file
Consider the following yaml file
app: name: cart-service description: ${app.name} is your first Spring Boot client welcome: message: Welcome to your yaml file!
The ${app.name} should be replaced with the value of app.name which is cart-service already mentioned in yaml file , This is just the way like spring do . Can you add support for this ?
Reference:
https://docs.spring.io/autorepo/docs/spring-boot/2.3.0.RELEASE/reference/htmlsingle/#boot-features-external-config-placeholders-in-properties
It seems a good feature to include
Hey @victorherraiz was this included in one of the recent releases?