Day 3: 100 Days of Cloud (Azure)

I cannot create a vm using the CLI without a resource group but none was provided and I don’t have permissions to create one. Am I missing something? Screenshots attached.



Screenshot 2026-07-09 212630

You don’t need to create a new resource group. It’s already created for the lab instance.

You can fetch the resource group with
az group list --query "[0].name" -o tsv and use it with the above command.

Thank you so much! Not sure why I didn’t think of that.