All cloud resources created / provisioned in Microsoft Azure need to be associated with Resource Groups. This is one of the basic features of the Azure Resource Management model to cloud resource management, and it makes it far easier to manage groupings of resources that comprise full applications and workloads. The Azure Portal makes it extremely simple to create and delete Azure Resource Groups. This article takes a look at managing Azure Resource Groups form the cross-platform command-line using the Azure CLI 2.0.

Create an Azure Resource Group

Since all cloud resources (Web App, SQL Database, Virtual Machine, IP Address, Virtual Network, etc.) in Microsoft Azure needs to be associated with a Resource Group, this places the Resource Group at the forefront to Azure Resource provisioning. The Azure Portal makes this easy as it asks for the Resource Group name when you provision all resources and will even create new Resource Groups for you at the time of provisioning other resources. However, when working with provisioning new Azure resources using the Azure CLI, you do need to first create your Resource Group before provisioning other Azure resources.

The following Azure CLI 2.0 command is used to create resource groups in your Azure Subscription:

# command format
az group create --name {group name} --location {azure region}
# usage example
az group create --name BestAppEver --location westus

In the above commands, the first example shows the format for using the “az group create” command, with placeholders for the parameter values. The second example demonstrates how to use the command to create a resource group named “BestAppEver” and specifying the “westus” Azure Region for the Resource Group.

The resource group create command does have some additional parameters that are optional when using the command. One of the most useful is the “–tags” parameter which allows you to specify the Tags to assign to the Resource Group. Tags allow you to assign additional meta-data to your resources in Azure. Here’s some examples of meta-data that can be useful to set on your Azure resource groups:

  • Using tags to signify the Department or Cost Center for a Resource Group can help with rolling up into Azure Billing to help you determine the Azure spend to pass on to that particular Cost Center or Department so you know what part of your business is responsible for a particular cloud workload and it’s cost.
  • Using tags to signify the Environment for a Resource Group can help with defining specifically which Azure resources are for Production, Development, or Test environments.

Here’s the same commands above for creating a Resource Group that include the “–tags” parameter to assign Tags to a Resource Group at the time of creation:

# command format
az group create --name {group name} \
    --location {azure region} \
    --tags {tag keys/values}
# usage example
az group create --name BestAppEver \
    --location westus \
    --tags Dept=HR
# usage setting multiple Tags
az group create --name BestAppEver \
    --location westus \
    --tags Dept=HR Env=Prod

Notice the method of specifying multiple Tags for the Resource Group. This is done by adding a space between them. It may seem obvious that these would be comma or semicolon delimited, but in fact these need to be space delimited.

If you need to use a longer or more readable value for the value of a Tag, then you need to use quotes around the key=value of the Tag. Here’s an example of doing this:

az group create --name BestAppEver \
    --location westus \
    --tags "Dept=Human Resources" "Env=Prod"

Delete an Azure Resource Group

If you have resources or a specific workload you no longer need running and want to delete and remove it from your Azure Subscription, you could go and delete each resource individually. However, this is a tedious and cumbersome task to do. Instead, the best approach is to delete the Resource Group, as this will delete the full Resource Group including all the resources within it.

The following Azure CLI 2.0 command is used to Delete an Azure Resource Group and all the resources contained within it:

# command format
az group delete --name {group name}
# usage example
az group delete --name BestGoupEver
# alternate usage with quotes
az group delete --name "BestGroupEver"

Be default, when you delete a Resource Group the Azure CLI 2.0 will prompt you to ensure you really mean to delete the Resource Group. You can optionally pass in the “–yes” parameter to indicate a hard yes and signify that the CLI should not prompt you for confirmation. Here’s an example of using this parameter:

az group delete --name BestGroupEver --yes

List All Resource Groups

If you’re not sure of the name of a Resource Group, then you can also list out all the resource groups on your Azure Subscription using the following command:

az group list

Show a Resource Group

There are times when you may want to inspect the region, tags or some other information on a specific Resource Group. Here’s the command that lets you show the details for a Resource Group:

# command format
az group show --name {group name}
# usage example
az group show --name BestAppEver

List All Resources within the Resource Group

Another thing that can be useful is to be able to see what are all the resources contained within a particular Resource Group. This can help when verifying this is the Resource Group you need to be working with, or even to inspect the Resource Group when working with a particular resource in general.

Here’s the command to list out all the resources in a particular Azure Resource Group:

# command format
az resource list --resource-group {group name}
# usage example
az resource list --resource-group BestAppEver

Export Resource Group to ARM Template

The Azure Portal has some nice user interface components for being able to work with Azure ARM Templates. However, there are times when it can be useful to generate an ARM Template for a specific Resource Group from the command-line.

Here’s the command you can use to export a Resource Group to an ARM Template:

# command format
az group export --name {group name}
# usage example
az group export --name SuperCloudGroup

Add Tags to Existing Resource Group

There are times when Resource Groups get created without Tags. Perhaps, a user did it through he Azure Portal, or you just have existing resources that don’t yet have Tags assigned. Whatever the reason, you can use the following command to easily add Tags to existing resource groups. You can also use this command to modify the Tags of an existing Resource Group as well.

# command format
az group update --name {group name} \
    --set {tag properties to set}
# usage example
az group update --name SuperCloudGroup \
    --set tags.Env=Stage tags.Dept=IT

Chris Pietschmann is a Microsoft MVP, HashiCorp Ambassador, and Microsoft Certified Trainer (MCT) with 20+ years of experience designing and building Cloud & Enterprise systems. He has worked with companies of all sizes from startups to large enterprises. He has a passion for technology and sharing what he learns with others to help enable them to learn faster and be more productive.

Discover more from Build5Nines

Subscribe now to keep reading and get access to the full archive.

Continue reading

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |