01-31-2023 06:08 AM
Hi
We have a requirement to import only AAD groups in Saviynt Azure AD connector.
There is a sync between AD and Azure AD in our environment. Azure AD has both AD groups and AAD group. How to import only AAD groups in Azure AD connector.
Can we use ENTITLEMENT_FILTER_JSON? Any samples available?
Thank you
Rashmi
01-31-2023 06:14 AM
Hi,
In Saviynt EntitlementType for both AD and AAD group is same which is "AADGroup".
How to find out which entitlement is from AD and AAD in Saviynt?
Thank you
Rashmi
01-31-2023 11:03 AM - edited 01-31-2023 11:06 AM
01-31-2023 11:04 AM
There are certain attributes like onPremisesSecurityIdentifier which are populated only for groups synced from on-prem AD. Probably with that you can filter the groups that are native to Azure AD. Check if you are pulling the attribute from Azure AD in your ENTITLEMENT_ATTRIBUTE json mapping.
Refer this for ENTITLEMENT_FILTER_JSON samples. Refer the version as well in the doc if it's supported.
{
"group_filter": "onPremisesSecurityIdentifier eq null"
}
-Siva
02-01-2023 04:07 AM
Hi Sivagami,
As per your suggestion we tried with same in ENTITLEMENT_FILTER_JSON.
We had "onPremisesSecurityIdentifier" in Entitlement Attribute section.
But while importing access we are getting same number of access(#106) that is already exist in system.
Filter is not working as expected.
Thanks
02-01-2023 04:52 AM
Do you see filter applied in logs ?
02-01-2023 09:38 PM
01-31-2023 06:21 AM
You can create a custom_access import trigger for Azure AD and put the import config as needed.
If you need only AADGroups to be pulled in, you can put something like below.
{
"importEntTypes": {
"AADGroup": {}
},
"excludeEntTypes": {
"Team": {},
"Channel": {},
"MemberPermission": {},
"GuestPermission": {},
"ApplicationInstance": {},
"InterAppOauthPermissions": {},
"DirectoryRole": {},
"Subscription": {},
"Application": {},
"DirectoryRoleMember": {},
"SKU": {},
"ServicePlans": {}
}
}
Refer connector doc for more clarity - https://saviynt.freshdesk.com/support/solutions/articles/43000463699-azure-ad-connector-guide#AzureA...
-Siva