We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67fc5a6 commit 7eaa7edCopy full SHA for 7eaa7ed
1 file changed
arm/Microsoft.AppConfiguration/configurationStores/deploy.bicep
@@ -154,9 +154,9 @@ resource configurationStore 'Microsoft.AppConfiguration/configurationStores@2021
154
properties: {
155
createMode: createMode
156
disableLocalAuth: disableLocalAuth
157
- enablePurgeProtection: enablePurgeProtection
+ enablePurgeProtection: sku == 'Free' ? false : enablePurgeProtection
158
publicNetworkAccess: publicNetworkAccess
159
- softDeleteRetentionInDays: softDeleteRetentionInDays
+ softDeleteRetentionInDays: sku == 'Free' ? 0 : softDeleteRetentionInDays
160
}
161
162
0 commit comments