Skip to content

Instantly share code, notes, and snippets.

@papeMK2
Created February 17, 2023 08:21
Show Gist options
  • Save papeMK2/f0c349966d1240e5e72418b908ff2370 to your computer and use it in GitHub Desktop.
Save papeMK2/f0c349966d1240e5e72418b908ff2370 to your computer and use it in GitHub Desktop.
param name string
resource app 'Microsoft.Web/sites@2021-03-01' existing = {
name: name
}
resource slotSetting 'Microsoft.Web/sites/config@2022-03-01' = {
name: 'slotConfigNames'
parent: app
properties: {
appSettingNames: [
'key-name-01'
'key-name-02'
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment