DEV Community

Cover image for STEP BY STEP GUIDE: How to Create a Resource Group on Azure Portal.
Victor Sunday
Victor Sunday

Posted on

STEP BY STEP GUIDE: How to Create a Resource Group on Azure Portal.

introduction
Microsoft Azure is one of the most popular cloud computing platforms used worldwide. One of the first things you need to understand when working with Azure is the concept of a Resource Group. A resource group is like a container that holds all the resources (like virtual machines, storage, databases) for your project. The primary purpose of a resource group is to organize and manage related resources as a single unit.

In this post, I will walk you through the step-by-step process of creating a resource group using the Azure Portal.

Step 1: Sign in to Azure Portal
Open your browser and go to https://portal.azure.com and log in with your Microsoft account.

Azure sign in page

Step 2: Open the Resource Groups Section
On the left-hand menu, click on 'Resource groups'. If you donโ€™t see it, click on 'All services' and search for Resource groups.

left hand menu

azure resource group highlight

all services interface

Step 3: Click on โ€œCreateโ€
At the top of the Resource Groups page, click the '+ Create' button.

creating resource group interface

Step 4: Fill in Basic Details
Enter the required details:

  • Subscription
  • Resource Group Name (e.g., Vickys)
  • Region (e.g., Central US)

filling basic details

Step 5: Review and Create
Click on 'Review + Create'. Azure will validate your input. If everything is correct, click 'Create'.

review and create interface

resource created intereface

Step 6: Confirmation
After creation, you will see a notification. Click 'Go to resource group' once deployment is complete.

notification confirmation interface

resource group created succesfully

Conclusion
Creating a resource group in Azure is a simple but very important step when working with cloud resources. It helps you organize and manage everything efficiently. Once your resource group is ready, you can start adding resources.

Top comments (0)