Share application settings between multiple Azure sites

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?

+4
source share
1 answer

, ARM Templates. , .

, . . , , .

+2

Source: https://habr.com/ru/post/1614524/


All Articles