Die Azure-Schnellstartvorlagen sind derzeit in englischer Sprache verfügbar.
Create an AppServicePlan and App in an ASEv3
Zuletzt aktualisiert: 10.08.2021
Create an AppServicePlan and App in an ASEv3
Diese ARM-Vorlage (Azure-Ressourcen-Manager) wurde von einem Mitglied der Community und nicht von Microsoft erstellt. Jede ARM-Vorlage wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Zuständigkeiten für ARM-Vorlagen, die von Mitgliedern der Community bereitgestellt und lizenziert werden, und auch nicht für deren Sicherheit, Kompatibilität oder Leistung. ARM-Vorlagen aus der Community werden von keinem Microsoft-Supportprogramm oder -Dienst unterstützt und wie vorhanden ohne jegliche Gewährleistung zur Verfügung gestellt.
Parameter
Parametername | Beschreibung |
---|---|
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. |
Verwenden der Vorlage
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 deploymentAzure PowerShell installieren und konfigurieren
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
Befehlszeile
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 deploymentInstallieren und Konfigurieren der plattformübergreifenden Azure-Befehlszeilenschnittstelle
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