Skip to content

Files

Latest commit

 

History

History
27 lines (25 loc) · 789 Bytes

app-service-web-deploy-web-host.md

File metadata and controls

27 lines (25 loc) · 789 Bytes
author ms.service ms.topic ms.date ms.author ms.subservice
cephalin
app-service
include
11/03/2016
cephalin
web-apps

App Service plan

Creates the service plan for hosting the web app. You provide the name of the plan through the hostingPlanName parameter. The location of the plan is the same location used for the resource group. The pricing tier and worker size are specified in the sku and workerSize parameters.

{
  "apiVersion": "2015-08-01",
  "name": "[parameters('hostingPlanName')]",
  "type": "Microsoft.Web/serverfarms",
  "location": "[resourceGroup().location]",
  "sku": {
    "name": "[parameters('sku')]",
    "capacity": "[parameters('workerSize')]"
  },
  "properties": {
    "name": "[parameters('hostingPlanName')]"
  }
},