Hi All,
I am trying to block/allow set of AD groups flow in the Jira database using LDAP query, facing issues in it. Suggestion will be appriciated, thanks in advance :)
Below filter worked for me, but when I tried add multiple names its not working.
(&(name=*-XYZ-*)(!(|(name=*-21-00)(name=*-21-01)(name=*-21-03))))
Hi @Vasanthakumar V ~ if I understand correctly, you would want to use the OR clause (use the pipe | instead of the ampersand &) for the ALLOW inclusion, unless the requirement is to include those members that are in BOTH groups.
Allow portion: (|(name=*-XYZ-*)(name=*-AZU-*))
Block portion: (!(|(name=*-21-00)(name=*-21-01)(name=*-21-03)))
(&(objectClass=group)(|(name=*-XYZ-*)(name=*-AZU-*))(!(|(name=*-21-00)(name=*-21-01)(name=*-21-03))))
Reference: https://confluence.atlassian.com/kb/how-to-write-ldap-search-filters-792496933.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.