Escaping environment variables in Spring Cloud Config properties files

585 Views Asked by At

I just setup a Spring Cloud Config server and have an application.yml file that should contain:

hostname: ${MY_ENV_VARIABLE}

When I pull that config file, the placeholder gets expanded before being sent instead of being sent to the application so that the application can expand it.

How do I either make Spring Cloud Config server stop expanding environment placeholders in the configuration files being served or escape the placeholders?

1

There are 1 best solutions below

0
On

This question is due to ignorance on my part. When you request the configuration as Spring Boot does, e.g., https://config-server:8888/myapp/myprofile/master, then you get the JSON that describes the configuration and NO PROPERTY EXPANSION OCCURS. But, when you test the configuration by requesting it as a YAML file, e.g., https://config-server:888/myapp-myprofile.yaml, then property expansion occurs before the YAML file is displayed.

So, for my purposes, this works fine. I just need to be aware of it when checking that configurations are valid.