How to create Spring Cloud Config Client with env specific configuration?
Clash Royale CLAN TAG #URR8PPP How to create Spring Cloud Config Client with env specific configuration? I have facing an issue with Spring Cloud Config Server and Eureka Server Profiling. Let's say I have 3 services with their name ("spring.application.name") as : myapp-svc myapp-spring-cloud-config-svc myapp-spring-eureka-svc I want to deploy each service in 2 regions ( dev and prod ). In Dev region, each service will run on localhost and in prod it will have some different url. 'myapp-spring-cloud-config-svc' in dev region will point to local git repo, while in prod region it will point to remote git repo. I can have 2 configurations: 1) When I start 'myapp-svc' service in local, it should connect to 'myapp-spring-cloud-config-svc' in dev. I can do this by setting spring.cloud.config.uri = <url of config svc in Dev>. But the issue with this set up is that the property needs to be defined in bootstrap.properties. So, If deploy 'm...