https://pulumi.com logo
Title
m

melodic-easter-82419

04/20/2021, 10:42 PM
It looks like when I create an AppServicePlan kind is not respected. This is the setup I am currently trying to deploy. You will see the kind is set to linux. Problem is when I look at the resource in Azure this is set to Windows.
new AppServicePlan(`${p}-asp`, {
      kind: "linux",
      location: rg.location,
      resourceGroupName: rg.name,
      sku: {
        capacity: 3,
        family: "Pv3",
        name: "P1v3",
        size: "P1v3",
        tier: "PremiumV3",
      },
    })
p

prehistoric-nail-50687

04/21/2021, 5:23 AM