In our scenario we have a bunch of properties that are common for a group of applications as well as properties that are application specific.
Is it possible to use spring cloud config in a way that for an app that is requesting config on startup it would supply both: props that are common for the whole group of applications as well as the app specific ones without workarounds like for example replicating the common properties by creating an exact copy for each app where the only difference is the name?
If not, then that would be the subject of this feature request.
Comment From: ryanjbaxter
application.yaml | properties
is shared between all clients so common properties can be placed in that file.
Comment From: hicnar
Yep, makes sense. Thanks for your response. Closing the ticket.