2.1 Resource Group

Task 1: Create a resource group for the lab.

In this task, you will create a resource group for the lab.

  1. Sign-in to the Azure portal https://portal.azure.com/.

    Note: Sign in to the Azure portal using an account that has the Owner or Contributor role in the Azure subscription you are using for this lab.

  2. Open the Cloud Shell by clicking the first icon in the top right of the Azure Portal. If prompted, select PowerShell and Create storage.

  3. Ensure PowerShell is selected in the drop-down menu in the upper-left corner of the Cloud Shell pane.

  4. In the PowerShell session within the Cloud Shell pane, run the following to create a resource group (verify with your instructor regarding the value of the location parameter):

    New-AzResourceGroup -Name AZ500LAB02 -Location 'East US'
    
  5. In the PowerShell session within the Cloud Shell pane, run the following to list resource groups to verify that the new resource group was created:

    Get-AzResourceGroup | format-table
    
  6. Close the Cloud Shell.