LinuxCommandLibrary

az-group

Manage resource groups and template deployments.

TLDR

Create a new resource group

$ az group create --name [name] --location [location]
copy


Check if a resource group exists
$ az group exists --name [name]
copy


Delete a resource group
$ az group delete --name [name]
copy


Wait until a condition of the resource group is met
$ az group wait --name [name] --[created|deleted|exists|updated]
copy

Copied to clipboard