mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-17 12:28:07 +00:00
[Breaking Change] Deploy with scriban only turned on (#2809)
* Deploy with scriban only turned on * Improve description
This commit is contained in:
@ -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'
|
||||
|
Reference in New Issue
Block a user