mirror of https://github.com/CrimsonTome/tldr.git
22 lines
526 B
Markdown
22 lines
526 B
Markdown
# az group
|
|
|
|
> Manage resource groups and template deployments.
|
|
> Part of `azure-cli` (also known as `az`).
|
|
> More information: <https://learn.microsoft.com/cli/azure/group>.
|
|
|
|
- Create a new resource group:
|
|
|
|
`az group create --name {{name}} --location {{location}}`
|
|
|
|
- Check if a resource group exists:
|
|
|
|
`az group exists --name {{name}}`
|
|
|
|
- Delete a resource group:
|
|
|
|
`az group delete --name {{name}}`
|
|
|
|
- Wait until a condition of the resource group is met:
|
|
|
|
`az group wait --name {{name}} --{{created|deleted|exists|updated}}`
|