Reputation: 353
I have created a custom configuration section for a service that is to be deployed to Azure in an app service. I know how to add app settings to the app service configuration. However, I can't find information about how to handle custom configuration sections. Is this something that is supported in Azure ARM templates?
Upvotes: 1
Views: 425
Reputation: 21
via ARM template NO.
where as one cam make use of FTP and add the required changes on post Deploy or make all the required changes on pre deploy. :)
Upvotes: 1
Reputation: 43183
There is no way to override custom section via the Azure App Service ARM API. Instead, this is something you do by simply deploying the right web.config
file to your Web App.
Upvotes: 1