An organization has a Microsoft Entra ID tenant and the following Azure resource hierarchy:
* Management Group: `MG-Production`
* Azure Subscription: `Sub-App1`
* Resource Group: `RG-Database`
* Azure SQL Database: `db-prod`
A user named User1 is a member of an Entra ID security group named `Group-DataOps`.
The following role assignments are configured:
1. `Group-DataOps` is assigned the Contributor role at the `MG-Production` scope.
2. User1 is assigned the Reader role at the `Sub-App1` scope.
3. User1 is assigned the User Access Administrator role at the `RG-Database` scope.
4. User1 is assigned the Global Administrator directory role in Microsoft Entra ID.
Which statement describes the effective permissions of User1?
- AUser1 has only Reader permissions within Sub-App1 because the direct Reader assignment at the subscription level overrides the inherited Contributor permissions from the group assignment.
- BUser1 automatically has Owner permissions for all resources in Sub-App1 because the Microsoft Entra ID Global Administrator role inherits full control plane access to all subscriptions by default.
- User1 has Contributor permissions for all resources in Sub-App1 and can manage Azure role assignments within RG-Database.Answer
- DUser1 is blocked from managing role assignments within RG-Database because the Contributor role inherited from MG-Production acts as a deny assignment for administrative actions.
Answer
User1 has Contributor permissions for all resources in Sub-App1 and can manage Azure role assignments within RG-Database.
The correct answer is correct because Azure RBAC role assignments are cumulative (additive). The user inherits the Contributor role from the security group assignment at the management group level, which applies to all resources within the subscription. The direct Reader assignment at the subscription level does not restrict this access. Furthermore, the direct assignment of the User Access Administrator role at the resource group level grants the user the ability to manage role assignments specifically within that resource group.
Step-by-Step Solution
Key Concept
Azure RBAC scopes, inheritance, and the additive nature of role assignments compared to Microsoft Entra ID roles.
Estimated Time:2m 0s