Templat Azure Quickstart saat ini tersedia dalam bahasa Inggris
Deploys Azure mgmt with attached workload
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 |
---|---|
azMgmtPrefix | Provide a prefix for the Azure mgmt. services that will be created |
instanceCount | Specify the number of VMs to create |
vmNamePrefix | Assing a prefix for the VMs you will create |
platform | Select the OS type to deploy. |
username | Assign a username to the VMs. Default will be 'azureadmin'. |
pwdOrSsh | Specify pwd if platform is WinSrv, or ssh if Linux. |
vmResourceGroup | Specify the name of an existing Resource Group where the VMs will be deployed. |
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/demos/azmgmt-demo/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/demos/azmgmt-demo/azuredeploy.json