Azure Resource Groups (RGs) are logical containers that hold related Azure resources, such as VMs, storage accounts, and databases. With Resource Groups you can:
Creating Resource Group
In the Azure portal, navigate to Resource groups, click on + Create, fill in the required details create the resource group.
In Azure CLI:
az group create --name myResourceGroupName --location eastus
In PowerShell:
New-AzResourceGroup -Name myResourceGroupName -Location eastus

Ireland | Bobby Abuchi