Home > Software design >  Do Azure App Service Backups also restore configuration?
Do Azure App Service Backups also restore configuration?

Time:10-09

When restoring a backup for an App Service, does it also restore all the configurations like Connection strings and Application settings? I have looked through the documentation but it is unclear. Thanks.

CodePudding user response:

No, the backup only saves the App Service Data.

If you what to save the App Services configuration, the easiest way is by downloading the ARM template. export template

You only need to deploy the ARM template if you need to recreate the resource.

Here is the documentation for deploying an ARM template:

  • Related