I am currently deploying some spring boot services to cloud on ECS containers. These containers use application.properties (some properties are common across services like cross cutting items).
When the common properties (or others) change I need to re-create the task definition of each of the service and re-deploy it cyclically.
Is there any better approach (most of these properties are needed on startup and doesn't change often to warrant the need of config server).
As per my understanding, even with AWS AppConfig and with minimum code change even if I write to disk and point my container to the same, still I have to do that for all services and re-deploy.
Is there any better way to handle it.
Thanks