Azure Fundamentals Practice lab

How to Create an Azure Resource Group in the Azure Portal

July 23, 2026 · 2 min read ·Beginner
#Azure#Resource Group#Azure Portal#Lab

In this lab, you create a resource group in the Azure Portal, confirm its settings, and delete it when the test is complete.

In this lab
  • Create a resource group in the Azure Portal
  • Add simple tags
  • Check the resource group details
  • Delete the lab safely

Goal

Create an empty resource group called rg-azfundamentals-lab. The resource group will be used only for this exercise.

Requirements

You need:

  • An active Azure subscription
  • Access to the Azure Portal
  • Permission to create resource groups in the selected subscription
Use a test subscription when possible

A resource group does not create a charge by itself. Resources added later can create costs.

Create the resource group

  1. Sign in to the Azure Portal.
  2. In the search box, enter Resource groups.
  3. Open Resource groups and select Create.
  4. Select the subscription for the lab.
  5. Enter rg-azfundamentals-lab as the resource group name.
  6. Select a region for the resource group metadata, for example West Europe.
  7. Open the Tags tab.
  8. Add the tag environment with the value lab.
  9. Select Review + create.
  10. Check the values and select Create.

The selected region stores the resource group metadata. Resources inside the group can use other supported Azure regions.

Portal screenshot Create a resource group — Basics tab.
Create a resource group — Basics tab.

Check the result

Open the new resource group and confirm:

  • The subscription is correct
  • The resource group name is correct
  • The metadata region is correct
  • The environment: lab tag is present
  • The resource list is empty

You now have a clean container for a future lab.

Portal screenshot Resource group overview after creation.
Resource group overview after creation.

Delete the lab

  1. Open rg-azfundamentals-lab.
  2. Select Delete resource group.
  3. Follow the confirmation shown by the portal.
  4. Confirm the deletion only when the group contains no resources that you need.

Deleting a resource group also starts the deletion of the resources inside it. Always review the content before confirming.

Portal screenshot Delete resource group confirmation.
Delete resource group confirmation.

Next practice

The next lab creates the same resource group with Terraform. This makes the configuration repeatable and keeps the infrastructure definition in code.

Official documentation