An organization is establishing a new governance model for their Azure environment. They need to delegate administrative permissions for managing virtual networks to a network operations team while adhering to the principle of least privilege. You need to configure a custom RBAC role and a new Management Group structure. Arrange the steps in the correct order to configure and delegate these permissions, starting with establishing the scope boundary and ending with granting user access.
- 1Create the new Management Group hierarchy to define the organizational scope boundary.
- 2Draft a custom role definition JSON file containing the network operations actions and set the AssignableScopes to the new Management Group ID.
- 3Register the custom RBAC role in the Azure tenant using the drafted definition file.
- 4Create a Microsoft Entra ID security group and add the network operations team members to it.
- 5Create a role assignment mapping the custom RBAC role to the security group at the scope of the new Management Group.
Answer
The correct order of steps is: 1) Create the new Management Group hierarchy, 2) Draft a custom role definition JSON file with the AssignableScopes set to the new Management Group ID, 3) Register the custom RBAC role, 4) Create a Microsoft Entra ID security group, and 5) Create a role assignment mapping the custom RBAC role to the security group at the Management Group scope.
The correct sequence begins by creating the target Management Group hierarchy to establish the scope boundary. This allows the Management Group's resource ID to be included in the AssignableScopes property of the custom role definition. Once drafted, the custom role is registered in Azure. Subsequently, a Microsoft Entra ID security group is created to house the users, adhering to identity management best practices. Finally, the custom role is assigned to the security group at the Management Group scope to delegate the permissions.
Step-by-Step Solution
Key Concept
Configuring custom Azure RBAC roles within a Management Group hierarchy