Venkatesh Muniyandi
Venkatesh Muniyandi

Reputation: 5630

Check if user exists in specific On Prem AD Security Group in Azure

My organization has On Premises Active Directory and many AD Security groups and also has Azure presence (AD Sync up). Is it possible for me to write a code and run in Azure that can check if a specific user/logged in user is part of AD Security Group (On Prem)?

Thanks

Upvotes: 0

Views: 958

Answers (1)

Aravind
Aravind

Reputation: 4163

It can be achieved by setting up Azure AD connect service. Once this is successfully done the synchronization component makes sure that the identity information for your on-premises users and groups is matching the cloud. Once the sync is done you can query and get the user information one of which is the user's group information.

https://azure.microsoft.com/en-in/documentation/articles/active-directory-aadconnect/

Upvotes: 1

Related Questions