I have an application with several sites, one for each logical function:
- User-facing
- Back end - receives web hooks, etc.
- Other
Sites have tons of configuration information. appsettings variables and connection strings. Regardless of how I manage the configuration, for example, through the Azure Portal or using scripts through Powershell, I want to do as few repetitions as possible to simplify the task and reduce the likelihood of errors when deploying / managing these configuration settings.
What recommendations exist to manage this?
source
share