Modify
yaml
type: "io.kestra.plugin.ldap.Modify"
Modify entries in LDAP.
Modify, Delete or Add attributes or DNs following LDIF changeType fields of each entries provided.
Examples
Modify entries in LDAP server.
yaml
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
- Type: string
- Dynamic: ✔️
- Required: ✔️
Hostname
Hostname for connection.
inputs
- Type: array
- SubType: string
- Dynamic: ✔️
- Required: ✔️
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
- Type: string
- Dynamic: ✔️
- Required: ✔️
Password
User password for connection.
port
- Type: string
- Dynamic: ✔️
- Required: ✔️
Port
A whole number describing the port for connection.
userDn
- Type: string
- Dynamic: ✔️
- Required: ✔️
User DN
User DN for connection.
Outputs
Definitions
Was this page helpful?