Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (13.1k points)
Can anyone help me where I can able to find the SKU name and their tier which are been supported by Azure app services?

1 Answer

0 votes
by (26.7k points)

There are multiple way to find the SKU and their tier, the current server farm available are:

name    Tier        Full name

D1      Shared      an D1 Shared

F1      Free        an F1 Free

B1      Basic       an B1 Basic

B2      Basic       an B2 Basic

B3      Basic       an B3 Basic

S1      Standard    an S1 Standard

S2      Standard    an S2 Standard

S3      Standard    an S3 Standard

P1      Premium     an P1 Premium

P2      Premium     an P2 Premium

P3      Premium     an P3 Premium

P1V2    PremiumV2   an P1V2 PremiumV2

P2V2    PremiumV2   an P2V2 PremiumV2

P3V2    PremiumV2   an P3V2 PremiumV2

I1      Isolated    an I2 Isolated

I2      Isolated    an I2 Isolated

I3      Isolated    an I3 Isolated

Y1      Dynamic     a  function consumption plan

Also, you can deploy server farm server using ARM definition:

{

  "type": "Microsoft.Web/serverfarms",

  "apiVersion": "2016-09-01",

  "name": "[parameters('hostingPlanName')]",

  "location": "[resourceGroup().location]",

  "properties": {

    "name": "[parameters('hostingPlanName')]"

  },

  "sku": {

    "name": "[parameters('hostingPlanSkuName')]",

    "tier": "[parameters('hostingPlanSkuTier')]"

  }

}

I hope this will help.

Want to become an Azure expert? join Azure Training now!!

Browse Categories

...