DEV Community

Ipadeola Taiwo
Ipadeola Taiwo

Posted on

How to Create a Resource Group in Azure (Step-by-Step Guide)

What is resource group and why should you care

In Microsoft Azure, a Resource Group is a logical container used to organize and manage related resources. It is one of the first things you need to create before deploying any service in Azure.

Whether you're deploying a virtual machine, database, or web app, Resource Groups help you manage everything efficiently, control access, and reduce costs.

In this guide, you’ll learn how to create a Resource Group step-by-step using the Azure Portal.

  • Step 1: Log in to the Azure Portal by visiting portal.azure.com and signing in to your account.

  • Step 2: In the Azure Portal, use the search bar at the top and type “Resource groups,” then select it from the results.

  • Step 3: Click the “Create” button to start creating a new Resource Group.

  • Step 4: Configure your Resource Group settings. By default, your Azure subscription (e.g., “Subscription 1”) will be selected. If you have multiple subscriptions, choose the one you want to use. Next, enter a name for your Resource Group—usually the name of your project works best. Then, select a region close to where your project or users are located. Once done, click the Next button to continue.

  • Step 5: Add tags (optional) Tags help you organize resources so you can find them easily later. You can leave this section blank if you want. It won’t affect your Resource Group. In this tutorial, we’ll skip adding tags.

  • Step 6: Review and create your Resource Group After clicking Next in the previous step, you will be taken to the Review + Create page. Carefully check that all the information is correct, including your subscription, Resource Group name, and region. Once everything looks good, click Create. Congratulations—you have successfully created your Resource Group! 🎉

  • Step 7: Confirm your Resource Group creation After clicking Create, look at the bell icon at the top of the Azure Portal. You should see a notification saying “Resource Group created”. You can then choose to either Go to resource group to view it immediately or Pin to dashboard for quick access later.

Congratulations! You have successfully created your first Resource Group in Azure. By organizing your resources in a Resource Group, you can manage, monitor, and deploy your projects efficiently.

Next, you can start adding resources like Virtual Machines, Databases, or Storage accounts to your Resource Group and explore how Azure manages them.

Best practices

  • Use meaningful names for your Resource Groups to easily identify projects.

  • Choose regions close to your users to improve performance.

  • Use tags for better organization, especially if you manage many projects.

Now that you know how to create a Resource Group, you’re ready to start building and managing your cloud projects in Azure. Happy learning! 🚀

Did you find this guide helpful? 💡
I’d love to hear about your experience creating your first Resource Group in Azure!
Share your thoughts or questions in the comments below, and stay tuned for more tutorials on Azure, Cloud Computing, and DevOps.

Top comments (0)