Ansible modules for talking to LDAP servers https://github.com/unchained-capital/ansible-ldap-modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dhruv Bansal 8f4d744171 Added README and LICENSE. 7 years ago
LICENSE Added README and LICENSE. 7 years ago
README.md Added README and LICENSE. 7 years ago
ldap_attr Initial commit. 7 years ago
ldap_entry Initial commit. 7 years ago
requirements.txt Initial commit. 7 years ago

README.md

Ansible LDAP Modules

For whatever reasons, Ansible doesn't include modules to manipulate an LDAP server in its core.

Peter Sagerson implemented a pair of modules and has attempted to get them into Ansible, but no luck yet. He's instead hosted his code on Bitbucket.

This repository is a fork of his original work (with some cosmetic improvements) hosted on GitHub.

Installation

You'll need to clone this repository somewhere into your Ansible (use a git submodule).

$ git clone https://github.com/unchained-capital/ansible-ldap-modules

The python-ldap library is required on the Ansible controller node for these modules to load. Install it with

$ cd ansible-ldap-modules
$ sudo pip -r requirements.txt

You may need to install some system dependencies first:

$ sudo apt-get install python-dev libsasl2-dev libldap2-dev libssl-dev

Once you have python-ldap installed, you'll need to link the executable files in this repository into Ansible's library path. The simplest way to do this is to create a library folder at the top-level of your Ansible repository and create symlinks within it to the module files in this repository:

$ mkdir -p library
$ ln -s ansible-ldap-modules/ldap_entry library/ldap_entry
$ ln -s ansible-ldap-modules/ldap_attr  library/ldap_attr

Usage

(copied from psager's original README)

This project contains a pair of Ansible modules for manipulating an LDAP directory. ldap_entry can be used to ensure that an entire entry exists and ldap_attr can be used to ensure the values of an entry's attributes.

Regrettably, Ansible does not have any sensible mechanism for packaging and distributing third-party modules with rendered documentation and runnable unit tests. The LDAP modules do have complete documentation strings embedded.