Azure Resource Group Operations

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Internal

Information about Resource Groups

List Resource Groups

az group list

Display Information about a Resource Group

az group show --resource-group <group-name>

Create a Resource Group

With Console

With CLI

export LOCATION=...
export RESOURCEGROUP =...
az group create --name $RESOURCEGROUP --location $LOCATION

Delete a Resource Group

⚠️ Deleting a resource group will delete all resources associated with the group. This is potentially a very destructive operation.

az group delete --name <group-name>