Deep Dive: Azure AD Identity Governance Access Reviews

Unlock granular control over resource access with Azure Active Directory (Azure AD) Access Reviews, a core component of Identity Governance.

Table of Contents

What are Access Reviews?

Azure AD Access Reviews allows organizations to manage identity and access lifecycle for resources like Azure AD groups, Azure AD integrated applications, and SharePoint Online sites. It enables you to systematically review and prove that the right people have the right access to the right resources, ensuring compliance and reducing security risks.

By automating the process of access reviews and recertification, Access Reviews helps organizations:

Key Use Cases

Group Membership Recertification

Regularly review who is a member of critical Azure AD groups, especially those granting access to sensitive data or applications.

Application Access

Ensure that users who still require access to business-critical applications are provisioned correctly and have the appropriate permissions.

External User Access

Review access for guest users from other organizations who have been invited to collaborate, ensuring their access is still necessary.

Role Assignment Review

For roles assigned via Azure AD Privileged Identity Management (PIM), Access Reviews can help recertify assignments for eligible or active role assignments.

Policy Enforcement

Continuously verify that access aligns with defined access policies and business needs.

How It Works

Access Reviews operate on a scheduled basis. You define what resource needs to be reviewed, who performs the review, and how often it should occur. The process typically involves:

  1. Definition: Configure an access review for a specific group, application, or site.
  2. Scheduling: Set the frequency (e.g., monthly, quarterly, annually) and duration of the review.
  3. Assignment: Designate reviewers. This can be the resource owner, a designated group of employees, or even the users themselves (self-review).
  4. Notification: Reviewers receive email notifications with a link to the access review portal.
  5. Review: Reviewers examine the list of users and their access, approving or denying access for each user.
  6. Automation: Based on the defined settings, Azure AD can automatically remove access for users whose access is denied or who don't respond within the specified timeframe.

Azure AD Identity Governance provides the engine to orchestrate these reviews efficiently.

Creating an Access Review

You can create access reviews directly within the Azure portal:

  1. Navigate to Azure Active Directory > Identity Governance > Access Reviews.
  2. Click New access review.
  3. Select the scope: Users (for group membership, application access) or Run as program (for service principals, managed identities).
  4. Choose the resource type (e.g., Groups, Applications).
  5. Select the specific groups or applications to review.
  6. Configure the review settings:
    • Reviewers: Specify who will perform the review (e.g., Members, Owners, Specific users/groups).
    • Frequency: Set how often the review should repeat.
    • Duration: Define how long the review period lasts.
    • Start and End dates.
  7. Configure Auto-apply changes: Decide whether to automatically remove access for denied users or those who don't respond.
  8. Set up notifications and provide review guidance.

Here's a simplified example of the configuration options:

// Example Configuration Snippet (Conceptual) { "displayName": "Quarterly Review of 'Finance Team' Group Membership", "scope": { "resourceId": "/groups/FinanceTeamGUID", "resourceType": "group" }, "reviewers": [ {"type": "groupOwners"} ], "frequency": "Quarterly", "durationInDays": 7, "autoApplyUponCompletion": { "deniedDecisionBehavior": "removeAccess", "notReviewedDecisionBehavior": "removeAccess" }, "notifications": { "remindersEnabled": true, "reminderFrequencyInDays": 2 } }

Reviewing Access

When an access review is active, assigned reviewers will receive an email notification:

The notification includes a link to the Access Reviews portal where they can see the list of users assigned to the resource.

For each user, reviewers can:

Clear comments explaining the decision are highly encouraged to maintain an audit trail.

Automating Actions

The power of Access Reviews is amplified by its automation capabilities:

Best Practices

Conclusion

Azure AD Access Reviews is an indispensable tool for maintaining a secure and compliant access environment. By implementing regular, automated reviews, organizations can significantly reduce their attack surface, ensure compliance, and streamline the management of user access to critical resources.

Embrace Identity Governance with Azure AD Access Reviews to build a more robust and trustworthy digital infrastructure.