12/06/2022 11:42 PM
Hi,
we are trying to import only certain groups which names starts with 'AZ' from Azure AD to saviynt using OOTB Azure AD connector.
anyone Please let me know how to filter only the groups in starts with 'AZ'
Thanks,
Sharan
Solved! Go to Solution.
12/07/2022 12:33 AM
Hello @Sharan
I suppose this can be achieved by setting Import type to "Custom_access AAD Import.
Thanks & Regards
Srinivas
12/07/2022 01:20 AM
Hi Srinivas,
Thank you for the quick response. we have the following requirement,
Client has on-prem AD and Azure AD and groups are being replicated from AD to AAD. we want to import in saviynt only the groups from AAD that are not present in AD. we can identify this groups based on their names (specific letters, like starts with 'AZ').
we do have following questions,
if we put the below values in entitlement_filter will it work?
startswith(displayname,'AZ*')
Could you please provide an example for import_config for import_type custom_access to include only this groups specified.
Thanks,
Sharan
12/07/2022 02:18 AM
Can you try something like below and check?
{
"importEntTypes": {
"AADGroup": {}
},
"ENTITLEMENT_FILTER_JSON": {
"group_filter":"startswith(displayname,'AZ')&$count=true"
}
}
12/07/2022 03:30 AM
Thank you!! It worked by adding the filter in entitlement_filter_json
{
"group_filter":"startswith(displayname,'AZ')&$count=true"
}