Create an AppServicePlan and App in an ASEv3
Last updated: 10/08/2021
Create an AppServicePlan and App in an ASEv3
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager 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 |
---|---|
useExistingVnetandSubnet | Required. Use existing virtual network and subnet. |
vNetResourceGroupName | Required. Resource Group name of virtual network if using existing vnet and subnet. |
virtualNetworkName | Required. The Virtual Network (vNet) Name. |
location | Required. Location for all resources. |
vNetAddressPrefixes | Required. An Array of 1 or more IP Address Prefixes for the Virtual Network. |
subnetAddressPrefix | Required. The subnet Name of ASEv3. |
subnetName | Required. The subnet Name of ASEv3. |
subnets | Required. The subnet properties. |
aseName | Required. Name of ASEv3. |
dedicatedHostCount | Required. Dedicated host count of ASEv3. |
zoneRedundant | Required. Zone redundant of ASEv3. |
createPrivateDNS | Optional. Create a private DNS zone for ASEv3. |
internalLoadBalancingMode | Required. Load balancer mode: 0-external load balancer, 3-internal load balancer for ASEv3. |
networkSecurityGroupName | Required. Name of the Network Security Group. |
networkSecurityGroupSecurityRules | Required. Array of Security Rules to deploy to the Network Security Group. |
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/quickstarts/microsoft.web/web-app-asp-app-on-asev3-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/quickstarts/microsoft.web/web-app-asp-app-on-asev3-create/azuredeploy.json