LoginSignup
0
1

More than 1 year has passed since last update.

Bicep で ASP.NET 4.8 の WebApp を作成する

Posted at

結論

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'
        }
      ]
    }
  }
}

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1