Skip to content

Commands

Azure CLI

  1. PowerShell - Command
  2. Azure CLI - Command
az account show
Get-AzSubscription

Cloud shell

  • A session based portal that allows PowerShell or Azure CLI to be chosen.
  • Exits in ~30mins.
  • Can upload/download/edit script in Cloud Shell storage stored at /home directory.
  • Access at https://shell.azure.com

Azure Resource Manager (ARM)

Topic is covered more in AZ-400. Template

az deployment group create \
  --name blanktemplate \
  --resource-group myResourceGroup \
  --template-file $templateFile
New-AzResourceGroupDeployment `
  -Name blanktemplate `
  -ResourceGroupName myResourceGroup `
  -TemplateFile $templateFile