Templat Azure Quickstart saat ini tersedia dalam bahasa Inggris
Create an AppServicePlan and App in an ASEv3
Templat Azure Resource Manager ini dibuat oleh anggota komunitas dan bukan oleh Microsoft. Setiap templat Resource Manager dilisensikan kepada Anda berdasarkan perjanjian lisensi oleh pemiliknya, bukan Microsoft. Microsoft tidak bertanggung jawab atas templat Resource Manager yang disediakan dan dilisensikan oleh anggota komunitas dan tidak menyaring keamanan, kompatibilitas, atau performa. Templat Community Resource Manager tidak didukung di bawah program atau layanan dukungan Microsoft apa pun, dan tersedia SEBAGAIMANA ADANYA tanpa jaminan apa pun.
Parameter
Nama Parameter | Deskripsi |
---|---|
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. |
Menggunakan templat
Windows 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 deploymentMenginstal dan mengonfigurasi 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
Baris perintah
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 deploymentMenginstal dan Mengonfigurasi 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