kaytus.ksmanage.edit_ldap – Set ldap information¶
Note
This plugin is part of the kaytus.ksmanage collection.
To install it use: ansible-galaxy collection install kaytus.ksmanage
.
To use it in a playbook, specify: kaytus.ksmanage.edit_ldap
.
New in version 1.0.0: of kaytus.ksmanage
Requirements¶
The below requirements are needed on the host that executes this module.
Python 3.7+
inManage
Parameters¶
Examples¶
- name: Ldap test
hosts: ksmanage
connection: local
gather_facts: no
vars:
ksmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Set ldap information"
kaytus.ksmanage.edit_ldap:
enable: "disable"
provider: "{{ ksmanage }}"
- name: "Set ldap information"
kaytus.ksmanage.edit_ldap:
enable: "enable"
encry: "SSL"
address: "100.2.2.2"
server_port: 389
dn: "cn=manager,ou=login,dc=domain,dc=com"
code: "123456"
base: "cn=manager"
attr: "uid"
provider: "{{ ksmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)