Azure Resource Group Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 7: Line 7:
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
az group list
az group list
</syntaxhighlight>
==Display Information about a Resource Group==
<syntaxhighlight lang='bash'>
az group show --resource-group <group-name>
</syntaxhighlight>
</syntaxhighlight>


Line 19: 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'>
az group delete --name <group-name>
</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>