We need to be able to use the results of an external command as inputs into a search query.
Specifically, we want to run a Python script that queries our AD and exclude the members of a group from search results. The Python script is all set but the integration into the query is confusing.
transforms.conf
[HRUserException]
external_cmd = my_script.py
external_type = python
Script output:
value1
value2
value3
How can we integrate this so that the output is used as a NOT condition? Script and output can be modified too.
Thanks!
... View more