Request for Permission to List All Subscriptions Under Root Management Group

Sree Aravind M 40 Reputation points
2026-09-03T11:26:47.21+00:00

We have a Service Principal that needs to list all subscriptions under the Root Management Group.

We only require read-only permission to retrieve/list the subscriptions. We do not need any permissions to modify subscriptions, resources, or management group settings.

Please confirm the minimum Azure RBAC role required and the appropriate scope to assign it at the Root Management Group level.

Azure Role-based access control
Azure Role-based access control

An Azure service that provides fine-grained access management for Azure resources, enabling you to grant users only the rights they need to perform their jobs.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Marcin Policht 106.8K Reputation points MVP Volunteer Moderator
    2026-09-03T12:07:27.0466667+00:00

    Use the built-in Azure RBAC role is Management Group Reader. This role provides read-only access to management group information and the hierarchy beneath it, including the subscriptions contained within that hierarchy. It does not grant permissions to create, modify, or delete subscriptions, resources, or management group configuration.

    The role should be assigned at the Root Management Group scope:

    /providers/Microsoft.Management/managementGroups/<root-management-group-id>

    The assignment then flows down through the management group hierarchy, allowing the service principal to discover and read the subscriptions underneath the root management group.

    Note that there a distinction between Management Group Reader and the broader Reader role. Management Group Reader is the better least-privilege choice when the service principal's requirement is limited to reading the management group hierarchy and discovering/listing subscriptions. The general Reader role grants substantially broader read access, including read access to Azure resources within the scope, so it is unnecessary if the application does not need to inspect resources.

    If the application needs to do more than enumerate subscriptions, such as retrieve resource groups, virtual machines, storage accounts, or other resources within those subscriptions, then Reader at the Root Management Group scope would be appropriate instead. But for the stated requirement of listing/retrieving the subscriptions under the Root Management Group, use Management Group Reader at the Root Management Group scope.

    More at https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles/management-and-governance#management-group-reader


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.