Module 1: Assignment - 2

Tasks To Be Performed:

  1. Connect Azure PowerShell to your Azure account
  2. Create a new resource group in South Central US with the name “rg-powershell”

Please submit the screenshot along with the commands.

Continuing from Assignment 1: Module 1

In the Azure Portal I navigate to the “Cloud Shell” Icon in the upper right corner
I make sure to change the terminal to “PowerShell”

To create the resource group I run:

New-AzResourceGroup -Name rg-powershell -Location "South Central US"


I verify the resource group creation with:

Get-AzResourceGroup -Name rg-powershell

The output is the same as above