Azure Resource Group Operations: Difference between revisions
Jump to navigation
Jump to search
Line 23: | Line 23: | ||
=Delete a Resource Group= | =Delete a Resource Group= | ||
⚠️ Deleting a resource group will delete all resources associated with the group. This is potentially a very destructive operation. | |||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
az group delete --name <group-name> | az group delete --name <group-name> | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 21:31, 19 November 2020
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>