Add
yaml
type: "io.kestra.plugin.ldap.Add"
Insert entries in LDAP.
Creates a new entry, if allowed, for each line of provided LDIF files.
Examples
Insert entries in LDAP server.
yaml
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
- 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 input into LDAP.
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?