On Task 1: Access your web server, I followed the guide step by step but noticed that upon trying copy/paste onto the Azure cloud shell, I kept getting errors
IPADDRESS="$(az vm list-ip-addresses --resource-group "learn-b7daad84-0095-4d3b-b0ba-ffd4b4315783" --name my-vm --query "[].virtualMachine.network.publicIpAddresses[*].ipAddress" --output tsv)"
Error Message:
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Resolution:
$IPADDRESS = az vm list-ip-addresses --resource-group "learn-b7daad84-0095-4d3b-b0ba-ffd4b4315783" --name my-vm --query "[].virtualMachine.network.publicIpAddresses[*].ipAddress" --output tsv
Note: It might be helpful to fellow learners to update this accordingly.