Delete Delete

yaml
type: "io.kestra.plugin.ldap.Delete"

Remove entries in LDAP.

Remove entries based on a targeted DN list.

Examples

yaml
id: ldap_delete
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.ldap.Delete
    description: What your task is supposed to do and why.
    userDn: cn=admin,dc=orga,dc=fr
    password: admin
    inputs:
       - "{{ outputs.some_task.uri_of_ldif_formated_file }}"
    hostname: 0.0.0.0
    port: 15060

Properties

hostname

  • Type: string
  • Dynamic: ✔️
  • Required: ✔️

Hostname

Hostname for connection.

inputs

  • Type: array
  • SubType: string
  • Dynamic: ✔️
  • Required: ✔️

File(s) URI(s) containing Distinguished-Name(s)

Targeted DN(s) in the 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?