Modify
Modify entries in an LDAP server.
Modify, Delete or Add attributes or DNs following LDIF changeType fields of each entries provided.
type: "io.kestra.plugin.ldap.Modify"
Examples
Modify entries in LDAP server.
id: ldap_modify
namespace: company.team
tasks:
- id: modify
type: io.kestra.plugin.ldap.Modify
userDn: cn=admin,dc=orga,dc=en
password: admin
inputs:
- "{{ outputs.some_task.uri_of_ldif_change_record_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 modify into LDAP. Entries must provide a changeType field.
password *Requiredstring
Password
User password for connection.
port *Requiredstring
Port
A whole number describing the port for connection.
userDn *Requiredstring
User
Username for connection.
authMethod string
simple
simple
gssapi
Authentication method
Authentication method to use with the LDAP server.
kdc string
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.
realm string
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.
sslOptions Non-dynamicSslOptions
SSL Configuration
Configure SSL/LDAPS connection parameters.
Definitions
io.kestra.core.http.client.configurations.SslOptions
insecureTrustAllCertificates booleanstring
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.