From 8da689c2ab9af4349fbc864c25a3c0ff23e63605 Mon Sep 17 00:00:00 2001 From: Simon Dahlbacka Date: Tue, 4 Oct 2022 00:17:25 +0300 Subject: [PATCH] az group: add page (#8698) --- pages/common/az-group.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/az-group.md diff --git a/pages/common/az-group.md b/pages/common/az-group.md new file mode 100644 index 0000000000..a262c83737 --- /dev/null +++ b/pages/common/az-group.md @@ -0,0 +1,21 @@ +# az group + +> Manage resource groups and template deployments. +> Part of `azure-cli`. +> More information: . + +- 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}}`