Your company has a Microsoft Entra ID tenant. You need to delegate password reset capabilities to a user named Admin1. Admin1 must only be allowed to reset passwords for users who meet both of the following criteria:
* Belong to the Sales department.
* Have their usage location set to the United States (US).
You need to implement a solution that requires the minimum administrative effort and follows the principle of least privilege.
Which configuration should you implement?
- Create an Administrative Unit (AU), configure a dynamic membership rule for the AU using the query (user.department -eq 'Sales') -and (user.usageLocation -eq 'US'), and assign Admin1 the Helpdesk Administrator role scoped to the AU.Answer
- BCreate an Administrative Unit (AU), configure a dynamic membership rule for the AU using the query (user.department == 'Sales') -and (user.location == 'US'), and assign Admin1 the Helpdesk Administrator role scoped to the AU.
- CCreate a dynamic Microsoft Entra ID group with the rule (user.department -eq 'Sales') -and (user.usageLocation -eq 'US'), and assign Admin1 the Helpdesk Administrator role scoped to the group.
- DCreate a dynamic Microsoft Entra ID group with the rule (user.department -eq 'Sales') -and (user.usageLocation -eq 'US'), and assign Admin1 the User Access Administrator Azure role at the subscription level.
Answer
Create an Administrative Unit (AU), configure a dynamic membership rule for the AU using the query (user.department -eq 'Sales') -and (user.usageLocation -eq 'US'), and assign Admin1 the Helpdesk Administrator role scoped to the AU.
The correct configuration uses an Administrative Unit (AU) with a dynamic membership rule configured with standard OData v3.0 query syntax (user.department -eq 'Sales') -and (user.usageLocation -eq 'US'). The Helpdesk Administrator role can be scoped to an AU, which delegates password reset permissions for the members of that AU to Admin1, satisfying the least privilege principle.
Step-by-Step Solution
Key Concept
Delegating administrative permissions over specific users using Administrative Units and dynamic membership rules in Microsoft Entra ID.