Skip to content

Instantly share code, notes, and snippets.

@aspen-roller
Created December 3, 2020 19:09
Show Gist options
  • Save aspen-roller/075413ff09a57d4c47efec75e631b061 to your computer and use it in GitHub Desktop.
Save aspen-roller/075413ff09a57d4c47efec75e631b061 to your computer and use it in GitHub Desktop.
toggle azure vms #azure #util
# resource group is set to "dev-roller"
# OFF (deallocated)
az vm deallocate --ids $(az vm list -g dev-roller --query "[].id" -o tsv)
# ON
az vm start --ids $(az vm list -g dev-roller --query "[].id" -o tsv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment