Creates an App Service Environment in your virtual network
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
aseName | Name of the App Service Environment |
location | Location of the App Service Environment |
ipSslAddressCount | Number of IP addresses for the IP-SSL address pool. |
subnetName | Subnet name that will contain the App Service Environment |
subnetId | Subnet Id that will contain the App Service Environment |
frontEndSize | Instance size for the front-end pool. Maps to P2,P3,P4. |
frontEndCount | Number of instances in the front-end pool. Minimum of two. |
workerPoolOneInstanceSize | Instance size for worker pool one. Maps to P1,P2,P3,P4. |
workerPoolOneInstanceCount | Number of instances in worker pool one. Minimum of two. |
workerPoolTwoInstanceSize | Instance size for worker pool two. Maps to P1,P2,P3,P4. |
workerPoolTwoInstanceCount | Number of instances in worker pool two. Can be zero if not using worker pool two. |
workerPoolThreeInstanceSize | Instance size for worker pool three. Maps to P1,P2,P3,P4. |
workerPoolThreeInstanceCount | Number of instances in worker pool three. Can be zero if not using worker pool three. |
Use the template
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-web-app-ase-create/azuredeploy.json
Command line
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-web-app-ase-create/azuredeploy.json