Complete the command to create a new resource group named 'MyResourceGroup' in the 'eastus' location.
az group create --name [1] --location eastusThe --name parameter specifies the resource group name. Here, 'MyResourceGroup' is the correct name to use.
Complete the command to list all resource groups in your Azure subscription.
az group [1]The list command shows all resource groups in your subscription.
Fix the error in the command to delete a resource group named 'TestGroup'.
az group delete --name [1] --yes --no-waitThe correct name is 'TestGroup' as specified in the instruction. (Note: Azure resource group names are case-insensitive.)
Fill both blanks to update the tags of a resource group named 'ProdGroup' with a tag key 'env' and value 'production'.
az group update --name ProdGroup --set tags.[1]=[2]
The tag key is 'env' and the value is 'production'. This updates the resource group tags accordingly.
Fill all three blanks to show details of a resource group named 'DevGroup' in JSON format.
az group [1] --name [2] --output [3]
The show command displays details of a specific resource group. The name is 'DevGroup' and the output format is 'json'.