
Add
Insert entries to an LDAP server.
Insert entries to an LDAP server.
Insert entries to an LDAP server.
Creates a new entry, if allowed, for each line of provided LDIF files.
type: "io.kestra.plugin.ldap.Add"Examples
Insert entries in LDAP server.
id: ldap_add
namespace: company.team
tasks:
- id: add
type: io.kestra.plugin.ldap.Add
description: What your task is supposed to do and why.
userDn: cn=admin,dc=orga,dc=en
password: admin
inputs:
- "{{outputs.someTask.uri_of_ldif_formated_file}}"
hostname: 0.0.0.0
port: 18060
Properties
hostname*Requiredstring
Hostname
Hostname for connection.
inputs*Requiredarray
URI(s) of input file(s)
List of URI(s) of file(s) containing LDIF formatted entries to input into LDAP.
password*Requiredstring
Password
User password for connection.
port*Requiredstring
Port
A whole number describing the port for connection.
userDn*Requiredstring
User
Username for connection.
authMethodstring
simplesimplegssapiAuthentication method
Authentication method to use with the LDAP server.
kdcstring
Kerberos key distribution center
Needed for GSSAPI authentication method. If set, property realm must be set too. If this is not provided, an attempt will be made to determine the appropriate value from the system configuration.
realmstring
Realm
Needed for GSSAPI authentication method. If set, property kdc must be set too. If this is not provided, an attempt will be made to determine the appropriate value from the system configuration.
sslOptionsNon-dynamic
SSL Configuration
Configure SSL/LDAPS connection parameters.
io.kestra.core.http.client.configurations.SslOptions
Whether to disable checking of the remote SSL certificate.
Only applies if no trust store is configured. Note: This makes the SSL connection insecure and should only be used for testing. If you are using a self-signed certificate, set up a trust store instead.
Metrics
additions.donecounter
The total number of successful additions to the LDAP server.
additions.mean.timetimer
The mean duration of LDAP additions in milliseconds.
additions.requestedcounter
The total number of LDIF addition requests made.