Access Reviews with On-Premise Groups

Share This Post

In some of my earlier post I have talked about Access Reviews that are part of the Identity Governance tools in Azure AD. One of the limitations is that on-premises groups cannot be edited directly from Azure AD, hence our Access Review cannot modify the group based after a review. In order to mitigate this we will use a PowerShell Module from Microsoft that will read the Access Review and then generate the commands needed to make the required changes in the on-premise environment. If you are not familiar with Access Packages and Access Reviews start by reading my post on Getting Started with Entitlement Management and Access Reviews: Manage Guest Users.

Contents

Prerequisites

First we need to create an App Registration in Azure AD that will be used by the PowerShell module to read our Access Review. This application will be used to authenticate to Azure AD and read our Access Review.

  1. In the Azure Portal head over to App Registration in Azure AD.
  2. Add a new Application and give it an appropriate name.
  3. Once the application has been created note the Application (client) ID.
  4. On the left-hand menu click API Permissions.
  5. Click Add Permission then choose Microsoft Graph.
  6. Next choose Application Permissions.
  7. Add the following permissions: AccessReview.ReadAll, Group.ReadAll and User.ReadAll.
  8. The default User.Read is not required here and can be removed if desired.
  9. Once the permissions have been added click the Grant Admin Consent button.
  10. On the left-hand menu click Certificates & Secrets.
  11. Under Client Secrets click New Client Secret.
  12. Give the secret a name and specify the expiration.
  13. Note down the Secret Value (will only be displayed once)

We should now have an App Registration with the corresponding Application ID.

Creating the Access Review

In this example the group is for simplicity sake called “OnPremise Group” and has 8 members. A more practical example could be the group that allows access to your VPN Service or access to some on-premise application. Make sure that the group you are testing with is within the synchronization scope of Azure AD Connect, else the group will not appear in Azure AD.

Next I created an normal access review that was targeted at the “OnPremise Group”. For demonstration purposes the Auto Apply Results To Resource option was disabled, though it wont make much of a difference since Azure AD cannot make modifications to an on-premise group anyway (this is the problem we are trying to solve). In the MyAccess Portal under Reviews, DemoUsers 5-7 were denied and the rest were approved.

Access Review Example

Making On-Premises Changes

Now that our Access Review has been completed we can use the PowerShell Module from Microsoft to generate a script that will make the required changes in our on-premise Active Directory. The process below could of course be automated quite easily but that is beyond the scope of this post.

  1. Download and Import the PowerShell Module
  2. Connect to Azure AD and the Access Review using the Client Secret and Application ID that we collected earlier.
  3. Use the Get-AzureADARAllReviewsOnPrem command to retrieve the required changes for all Access Reviews. We wont use this in our example as we only want to focus on a single Access Review.
  4. Alternatively retrieve the changes required for a specific Access Review by specifying the reviewID or object ID displayed in the Azure AD Portal.
  5. Open the Text specified in step 3 or 4 then run those commands in the on-premises environment to make the required changes.

Important: Make sure that the file path and text file exists prior to running the commands.

Import-Module .\AzureADAccessReviewsOnPremises.psm1

Connect-AzureADMSARSample -ClientApplicationId xxxxxxxxxxx -ClientSecret xxxxxxxxxxx -TenantDomain xxxx.onmicrosoft.com

Get-AzureADARAllReviewsOnPrem -filePath C:\Temp\OnPremCommands_AllReviews.txt

Get-AzureADARSingleReviewOnPrem -reviewId xxxxxxxxxx -filePath C:\Temp\OnPremCommands_SingleReview.txt

Once the commands in the text file have been executed we can have a look in our “OnPremise Group” and the users that were Denied in the Access Review have now been successfully removed.

On-Premises Group Result after Access Review

Want To See More?

Azure AD

Access Reviews with On-Premise Groups

In some of my earlier post I have talked about Access Reviews that are part of the Identity Governance tools in Azure AD. One of

Azure

Access Reviews: Manage Guest Users

Azure AD’s B2B (Business to Business) functionality allows organizations to invite external users into their organization so that they can collaborate. However, very few of