az group: add page (#8698)

This commit is contained in:
Simon Dahlbacka 2022-10-04 00:17:25 +03:00 committed by GitHub
parent dc314c6ef2
commit 8da689c2ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
pages/common/az-group.md Normal file
View File

@ -0,0 +1,21 @@
# az group
> Manage resource groups and template deployments.
> Part of `azure-cli`.
> More information: <https://docs.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}}`