Create a LDAP connector
tomtom
Registered Posts: 21 ✭✭✭✭
Hello,
I'm often performing access and account controls on users in a LDAP server (Active Directory to be precise), I would like to have the ability to directly connect to the LDAP server and import some data in a dataset.
To date in Dataiku, LDAP is only handled for user authentication on Dataiku.
Best regards.
I'm often performing access and account controls on users in a LDAP server (Active Directory to be precise), I would like to have the ability to directly connect to the LDAP server and import some data in a dataset.
To date in Dataiku, LDAP is only handled for user authentication on Dataiku.
Best regards.
Tagged:
Answers
-
I know it is not a true answer, but I would like to point out that there is a possibility to create custom plugins - plugin type dataset. The template is self explanatory, in python you need to fill the code for the class for two or three methods:
get_read_schema
generate_rows
In the python code you can handle to the connect and fetch of data via ldap3 python module. I assume you want only to read from the LDAP/AD so you dont have to worry about the write method.