Resource Group In Azure

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

Resource Group In Azure

 

Click on Add button

Resource Group In Azure

 

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.

Resource Group In Azure

 

After clicking on save button, after a few seconds the resource group is created.

Resource Group In Azure

 

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.

Resource Group In Azure

 

Creating the resource group from Bash Shell command window

To open bash resource group from bash shell click on:

Resource Group In Azure

 

Once you click on the above icon button, then it will open the Bash shell window. Bash shell commands are Azure CLI Commands,

Resource Group In Azure

 

For creating resource group we have Azure CLI Command, by using help command on resource group

az group –help

Resource Group In Azure

 

Creating the resource group

az group create --name "Demo2" -- location "West Europe"

Resource Group In Azure

 

Once we click on the refresh button we will see the “Demo2group

Resource Group In Azure

 

To see the list of resources

Az group list

Resource Group In Azure

 

Deleting resource group

az group delete -n "Demo2"

Resource Group In Azure

 

Once you click on the “Refresh” button  the “Demo2” resource group is not visible on the portal.


Similar Articles