The Azure Quickstart templates are currently available in English
Creates an App Service Environment in your virtual network
Den här ARM-mallen (Azure Resource Manager) skapades av en community-medlem, inte av Microsoft. Varje ARM-mall licensieras till dig enligt ett licensavtal av respektive ägare, inte Microsoft. Microsoft ansvarar inte för ARM-mallar som erbjuds och licensieras av community-medlemmar och undersöker inte mallarnas säkerhet, kompatibilitet eller prestanda. Microsofts supportprogram och supporttjänster omfattar inte support för ARM-mallar från community-medlemmar, och dessa mallar tillhandahålls i BEFINTLIGT SKICK utan någon form av garanti.
Parametrar
Parameternamn | Beskrivning |
---|---|
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. |
Använda mallen
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 deploymentInstallera och konfigurera 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
Kommandoraden
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 deploymentInstallera och konfigurera Azures plattformsoberoende kommandoradsgränssnitt
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