Skip to content

Commit 5d9aac5

Browse files
Update resource Microsoft.Web/sites/config to 2023-12-01
1 parent d4cc853 commit 5d9aac5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

infrastructure/templates/public-api/components/appServiceSlotConfig.bicep

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ param azureFileShares {
3232
}[] = []
3333

3434
@description('Set specific appsettings to be slot specific values')
35-
resource functionSlotConfig 'Microsoft.Web/sites/config@2023-01-01' = {
35+
resource functionSlotConfig 'Microsoft.Web/sites/config@2023-12-01' = {
3636
name: '${appName}/slotConfigNames'
3737
properties: {
3838
appSettingNames: slotSpecificSettingKeys
@@ -69,7 +69,7 @@ resource azureStorageAccounts 'Microsoft.Web/sites/slots/config@2021-01-15' = {
6969
}
7070

7171
@description('Set appsettings on production slot')
72-
resource appProductionSettings 'Microsoft.Web/sites/config@2023-01-01' = {
72+
resource appProductionSettings 'Microsoft.Web/sites/config@2023-12-01' = {
7373
name: '${appName}/appsettings'
7474
properties: combinedProductionSettings
7575
}

infrastructure/templates/public-api/components/functionApp.bicep

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ var authSettingsV2Properties = entraIdAuthentication == null ? {} : {
268268
}
269269
}
270270

271-
resource functionAppAuthSettings 'Microsoft.Web/sites/config@2022-03-01' = {
271+
resource functionAppAuthSettings 'Microsoft.Web/sites/config@2023-12-01' = {
272272
name: 'authsettingsV2'
273273
parent: functionApp
274274
properties: authSettingsV2Properties
@@ -294,7 +294,7 @@ module functionAppKeyVaultAccessPolicy 'keyVaultAccessPolicy.bicep' = {
294294
}
295295
}
296296

297-
resource azureStorageAccountsConfig 'Microsoft.Web/sites/config@2021-01-15' = {
297+
resource azureStorageAccountsConfig 'Microsoft.Web/sites/config@2023-12-01' = {
298298
name: 'azurestorageaccounts'
299299
parent: functionApp
300300
properties: reduce(azureFileShares, {}, (cur, next) => union(cur, {

0 commit comments

Comments
 (0)