Complete the code to list all resource groups in your Azure subscription.
az group [1]The az group list command lists all resource groups in your Azure subscription.
Complete the code to create a new Azure resource group named 'MyGroup' in the 'eastus' region.
az group create --name [1] --location eastusThe --name parameter specifies the resource group name. Here, it should be MyGroup.
Fix the error in the command to show details of a virtual machine named 'vm1' in resource group 'MyGroup'.
az vm [1] --name vm1 --resource-group MyGroupThe az vm show command displays details of a specific virtual machine.
Fill both blanks to start a Cloud Shell session and select Bash as the shell type.
az cloudshell [1] --shell-type [2]
The command az cloudshell start --shell-type bash starts the Cloud Shell with Bash.
Fill all three blanks to create a storage account named 'mystorage' in resource group 'MyGroup' with the SKU 'Standard_LRS'.
az storage account [1] --name [2] --resource-group [3] --sku Standard_LRS
The command az storage account create --name mystorage --resource-group MyGroup --sku Standard_LRS creates the storage account as specified.