結論
metadata に CURRENT_STACK
を指定する。
こんな感じ。
param webAppName string
param location string = resourceGroup().location
resource webapp 'Microsoft.Web/sites@2022-03-01' = {
name: webAppName
location: location
properties: {
siteConfig: {
netFrameworkVersion: 'v4.0'
metadata: [
{
name: 'CURRENT_STACK'
value: 'dotnet'
}
]
}
}
}