Azure resource groups are containers for all your different resources. There cannot be any resources without them. This recipe shows you how to create, update, and delete resource groups.
Exploring Azure resource groups
Getting ready
Install and start PowerShell Core.
How to do it...
Let's perform the following steps:
- Try listing your existing resource groups first, as follows:
Get-AzResourceGroup
- You can create resource groups at any time to organize your resources such as virtual machines, networks, and so on, as shown in the following example:
New-AzResourceGroup...