[Breaking Change] Deploy with scriban only turned on (#2809)

* Deploy with scriban only turned on

* Improve description
This commit is contained in:
Teo Voinea
2023-02-14 08:31:39 -05:00
committed by GitHub
parent 0bc22a8073
commit 307526fb64
5 changed files with 22 additions and 4 deletions

View File

@ -6,9 +6,22 @@ var appConfigName = 'app-config-${suffix}'
resource featureFlags 'Microsoft.AppConfiguration/configurationStores@2022-05-01' = {
name: appConfigName
location: location
sku:{
sku: {
name: 'standard'
}
}
resource configStoreFeatureflag 'Microsoft.AppConfiguration/configurationStores/keyValues@2021-10-01-preview' = {
parent: featureFlags
name: '.appconfig.featureflag~2FEnableScribanOnly'
properties: {
value: string({
id: 'EnableScribanOnly'
description: 'Render notification templates with scriban only'
enabled: true
})
contentType: 'application/vnd.microsoft.appconfig.ff+json;charset=utf-8'
}
}
output AppConfigEndpoint string = 'https://${appConfigName}.azconfig.io'