forked from data.coop/ansible
Hardcoding ldap filters for now.
This commit is contained in:
parent
69d53c26e9
commit
05f5628de2
|
@ -425,7 +425,7 @@ module.exports = {
|
|||
//
|
||||
// @type string
|
||||
//
|
||||
baseDN: "{{ ldap_dn }}",
|
||||
// baseDN: "",
|
||||
|
||||
//
|
||||
// LDAP primary key
|
||||
|
@ -452,14 +452,14 @@ module.exports = {
|
|||
//
|
||||
// @type string
|
||||
//
|
||||
rootDN: "",
|
||||
rootDN: "cn=admin,dc=data,dc=coop",
|
||||
|
||||
//
|
||||
// Password of the lounge LDAP system user
|
||||
//
|
||||
// @type string
|
||||
//
|
||||
rootPassword: "",
|
||||
rootPassword: "{{ ldap_admin_password }}",
|
||||
|
||||
//
|
||||
// LDAP filter
|
||||
|
@ -467,14 +467,15 @@ module.exports = {
|
|||
// @type string
|
||||
// @default "uid"
|
||||
//
|
||||
filter: "uid",
|
||||
//filter: "(objectClass=inetOrgPerson)(memberOf=ou=members,dc=data,dc=coop)",
|
||||
filter: "(objectClass=inetOrgPerson)",
|
||||
|
||||
//
|
||||
// LDAP search base (search only within this node)
|
||||
//
|
||||
// @type string
|
||||
//
|
||||
base: "",
|
||||
base: "{{ ldap_dn }}",
|
||||
|
||||
//
|
||||
// LDAP search scope
|
||||
|
|
Loading…
Reference in a new issue