According to the MSDN definition, a resource group is a logical container into Azure resources like web app, databases, and storage accounts, where logical apps and functions are deployed and managed.
Creating the resource group from the portal
Click on Resource groups button in the left side menu
Click on Add button
After clicking on add button a new screen will open; fill in the all details, like resource group name, and select the resource group location.
After clicking on save button, after a few seconds the resource group is created.
Once you click on resource Demo1 resource group, you will be redirected to another screen. In that screen we have different options, and I will cover those options in upcoming articles. If we want to delete resource group then click on the “Delete resource group” button.
Creating the resource group from Bash Shell command window
To open bash resource group from bash shell click on:
Once you click on the above icon button, then it will open the Bash shell window. Bash shell commands are Azure CLI Commands,
For creating resource group we have Azure CLI Command, by using help command on resource group
az group –help
Creating the resource group
az group create --name "Demo2" -- location "West Europe"
Once we click on the refresh button we will see the “Demo2” group
To see the list of resources
Az group list
Deleting resource group
az group delete -n "Demo2"
Once you click on the “Refresh” button the “Demo2” resource group is not visible on the portal.