Hi Hayden,
First, please clean up any resources that may have been created in Azure that are related to the exercise. To do this, in Azure portal, click Resource Groups and look for one similar to dp203-xxxxx. If you find one, click on its name, next click Delete resource group button, enter name in box to confirm, click Delete, confirm delete again.
Wait for resource group and its contents to finish deleting (there will be notification message in upper right corner). If no dp203- resource group existed, continue below.
Please open a separate browser tab and navigate to https://shell.azure.com . This will open a full screen Azure Cloud Shell. Make sure it is PowerShell by verifying that the prompt begins with
PS /home/username>
Please copy below commands and then right-click -- Paste them into cloud shell window:
New-AzResourceGroup -Name fix-exercise-rg -Location westus
New-AzStorageAccount -ResourceGroupName fix-exercise-rg -Name haydenxazcve321 -Location westus -SkuName Standard_LRS -PublicNetworkAccess Disabled -AllowBlobPublicAccess $false -MinimumTlsVersion TLS1_2
What the above will do is create a resource group and a new storage account. There is no charge for this, provided you don't actually use the storage account. You can delete the storage account after completing the exercise if you want.
NOTE: In the above commands I provided a random name for the storage account. You may modify this to something different if you want, before pasting command.
Once the above is complete, please complete the steps from the exercise in same cloud shell window, starting at step #4. If you receive an error please make a note of precisely which step in the process for troubleshooting purposes.
I was able to complete the set up instructions successfully minutes before posting this.
IMPORTANT: Whenever you are finished an exercise or stepping away from your computer for a while, make sure you delete any Azure resources you created for the exercise. The resources created for DP-203 can be potentially very expensive if left running for extended amount of time.
Please post your results, whether positive or negative.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP