- Start resource creation, then stop on last stage, do not deploy it
- Download template zip using
Download a template for automation
- Review and download the template
-
Create resource group
$rgName="rg-ubuntu-vm-arm"$location="westus"az group create -n $rgName -l $location
-
Deploy template
$templatePath = "./arm_templates/exported-portal-rg-ubuntu-vm/template.json"$parametersPath = "./arm_templates/exported-portal-rg-ubuntu-vm/parameters.json"az deployment group create -g $rgName --template-file $templatePath --parameters $parametersPath
az group delete -n $rgName --yes

