metadata description = 'Updates app settings for an Azure App Service.' | |
param name string | |
param appSettings object | |
resource appService 'Microsoft.Web/sites@2022-03-01' existing = { | |
name: name | |
} | |
resource settings 'Microsoft.Web/sites/config@2022-03-01' = { | |
name: 'appsettings' | |
parent: appService | |
properties: appSettings | |
} | |