mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 08:35:23 +02:00
az group: add page (#8698)
This commit is contained in:
parent
dc314c6ef2
commit
8da689c2ab
1 changed files with 21 additions and 0 deletions
21
pages/common/az-group.md
Normal file
21
pages/common/az-group.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue