Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bpholt/puppet-apache_ldap

Manages Apache conf files for Location directives that need LDAP security.
https://github.com/bpholt/puppet-apache_ldap

Last synced: 24 days ago
JSON representation

Manages Apache conf files for Location directives that need LDAP security.

Awesome Lists containing this project

README

        

puppet-apache_ldap
===========================

Manages Apache conf files for Location directives that need LDAP security.

### Example

# Set site defaults for common properties
Apache_ldap::Location {
ldap_url => 'ldap://ldap.example.com:389/OU=ORG,DC=example,DC=com?sAMAccountName?sub?(objectClass=*)',
ldap_bind_dn => 'cn=user,DC=example,DC=com',
ldap_bind_password => 'p@ssw0rd',
}

include apache_ldap

apache_ldap::location { 'test':
url => '/repository',
realm => 'My Repositories',
clone_groups => ['clone_group1','clone_group2',],
clone_users => ['clone_user1','clone_user2',],
push_groups => ['push_group1','push_group2',],
push_users => ['push_user1','push_user2',],
}