Azure Resource Group Operations: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Azure Operations =Create a Resource Group= ==With Console== ==With CLI== <syntaxhighlight lang='bash'> export LOCATION=... export R...") |
|||
Line 8: | Line 8: | ||
export LOCATION=... | export LOCATION=... | ||
export RESOURCEGROUP =... | export RESOURCEGROUP =... | ||
az group create --name $RESOURCEGROUP --location $LOCATION | az group create --name $RESOURCEGROUP --location $LOCATION --wait | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 23:35, 18 November 2020
Internal
Create a Resource Group
With Console
With CLI
export LOCATION=...
export RESOURCEGROUP =...
az group create --name $RESOURCEGROUP --location $LOCATION --wait