Raw New Markdown
Generating updated version of doc...
Rendered New Markdown
Generating updated version of doc...
---
title: Use the Azure portal and Azure Resource Manager to Manage Resource Groups
description: Learn how to use the Azure portal and Azure Resource Manager to manage your resource groups. Understand how to create, list, and delete resource groups.
ms.topic: article
ms.date: 02/09/2025
ms.custom: devx-track-arm-template
---
# Use the Azure portal and Azure Resource Manager to manage resource groups
Learn how to use the [Azure portal](https://portal.azure.com) with [Azure Resource Manager](overview.md) to manage Azure resource groups.
[!INCLUDE [Handle personal data](~/reusable-content/ce-skilling/azure/includes/gdpr-intro-sentence.md)]
## What is a resource group
A resource group is a container that holds related resources for an Azure solution. The resource group can include all the resources for the solution or only those resources that you want to manage as a group. You decide how to allocate resources to resource groups based on what makes the most sense for your organization. Generally, add resources sharing the same lifecycle to the same resource group so you can easily deploy, update, and delete them as a group.
The Azure portal uses the resource group scope to create views that span across multiple resources. For example:
- **Metrics blade** provides metrics information (CPU, resources) to users.
- **Deployments blade** shows the history of ARM template or Bicep deployments targeted to that resource group (which includes portal deployments).
- **Policy blade** provides information related to the policies enforced on the resource group.
- **Diagnostics settings blade** provides errors and warnings to review.
The resource group stores metadata about the resources. When you specify a location for the resource group, you're specifying where that metadata is stored. For compliance reasons, you might need to ensure that your data is stored in a particular region. Resources inside a resource group can be in different regions.
## Create resource groups
1. Sign in to the [Azure portal](https://portal.azure.com).
1. Select **Resource groups**.
1. Select **Create**.
:::image type="content" source="./media/manage-resource-groups-portal/manage-resource-groups-add-group.png" alt-text="Screenshot of the Azure portal with 'Resource groups' and 'Add' highlighted." lightbox="./media/manage-resource-groups-portal/manage-resource-groups-add-group.png":::
1. Enter the following values:
- **Subscription**: Select your Azure subscription.
- **Resource group**: Enter a new resource group name.
- **Region**: Select an Azure location such as **Central US**.
:::image type="content" source="./media/manage-resource-groups-portal/manage-resource-groups-create-group.png" alt-text="Screenshot of the 'Create Resource Group' form in the Azure portal with fields for Subscription, Resource group, and Region." lightbox="./media/manage-resource-groups-portal/manage-resource-groups-create-group.png":::
1. Select **Review + Create**.
1. Select **Create**. It takes a few seconds to create a resource group.
1. To refresh the resource group list, select **Refresh** from the top menu. To open the newly created resource group, select it from the list. Or, select **Notification** (the bell icon) from the top, and then select **Go to resource group** to open the newly created resource group.
:::image type="content" source="./media/manage-resource-groups-portal/manage-resource-groups-add-group-go-to-resource-group.png" alt-text="Screenshot of the Azure portal with the 'Go to resource group' button in the Notifications panel." lightbox="./media/manage-resource-groups-portal/manage-resource-groups-add-group-go-to-resource-group.png":::
## List resource groups
1. Sign in to the [Azure portal](https://portal.azure.com).
1. To list the resource groups, select **Resource groups**.
1. To customize the information displayed for the resource groups, configure the filters. The following screenshot shows the other columns that you can add to the display:
:::image type="content" source="./media/manage-resource-groups-portal/manage-resource-groups-list-groups.png" alt-text="Screenshot of the Azure portal displaying a list of resource groups." lightbox="./media/manage-resource-groups-portal/manage-resource-groups-list-groups.png":::
## Open resource groups
1. Sign in to the [Azure portal](https://portal.azure.com).
1. Select **Resource groups**.
1. Select the resource group you want to open.
## Delete resource groups
1. Open the resource group you want to delete. See [Open resource groups](#open-resource-groups).
1. Select **Delete resource group**.
:::image type="content" source="./media/manage-resource-groups-portal/delete-group.png" alt-text="Screenshot of the Azure portal with the 'Delete resource group' button highlighted in a specific resource group." lightbox="./media/manage-resource-groups-portal/delete-group.png":::
For more information about how Resource Manager arranges how resources are deleted, see [Azure Resource Manager resource group and resource deletion](delete-resource-group.md).
## Deploy resources to a resource group
After you create a Resource Manager template, use the Azure portal to deploy your Azure resources. For information about creating a template, see [Quickstart: Create and deploy Azure Resource Manager templates by using the Azure portal](../templates/quickstart-create-templates-use-the-portal.md). For information about using the portal to deploy a template, see [Deploy resources with Resource Manager templates and Azure portal](../templates/deploy-portal.md).
## Move to another resource group or subscription
You can move resources from one resource group to another. For more information and guidance, see [Move Azure resources to a new resource group or subscription](move-resource-group-and-subscription.md).
## Lock resource groups
Locking prevents other users in your organization from accidentally deleting or modifying critical resources like an Azure subscription, resource group, or resource.
1. Open the resource group that you want to lock. For more information, see [Open resource groups](#open-resource-groups).
1. In the left pane, select **Locks**.
1. To add a lock to the resource group, select **Add**.
1. Enter **Lock name**, **Lock type**, and **Notes**. The lock types include **Read-only** and **Delete**.
:::image type="content" source="./media/manage-resource-groups-portal/manage-resource-groups-add-lock.png" alt-text="Screenshot of the Add Lock form in the Azure portal with fields for Lock name, Lock type, and Notes." lightbox="./media/manage-resource-groups-portal/manage-resource-groups-add-lock.png":::
See [Lock your resources to protect your infrastructure](lock-resources.md) to learn more.
## Tag resource groups
Apply tags to resource groups and resources to logically organize your assets. For more information, see [Use tags to organize your Azure resources](tag-resources-portal.md).
## Export resource groups to templates
To learn about exporting templates, see [Single and multi-resource export to template - Portal](../templates/export-template-portal.md).
## Manage access to resource groups
Use [Azure role-based access control (Azure RBAC)](../../role-based-access-control/overview.md) to manage access to resources in Azure. For more information, see [Assign Azure roles using the Azure portal](/azure/role-based-access-control/role-assignments-portal).
## Next steps
- To learn more about managing Azure resources, see [Manage Azure resources by using the Azure portal](manage-resources-portal.md).
- To learn more about Resource Manager, see the [What is Azure Resource Manager?](overview.md) overview.
- To learn the Resource Manager template syntax, see [Understand the structure and syntax of Azure Resource Manager templates](../templates/syntax.md).
- To learn how to develop templates, see the step-by-step [Azure Resource Manager documentation tutorials](../index.yml).
- To view Azure Resource Manager template schemas, see [Define resources with Bicep, ARM templates, and Terraform AzAPI provider](/azure/templates/).