AWX/LDAP
< AWX
LDAP USER SEARCH
[ "OU=Users,DC=website,DC=com", "SCOPE_SUBTREE", "(cn=%(user)s)" ]
The first line specifies where to search for users in the LDAP tree.
The second line specifies the scope where the users should be searched:
SCOPE_BASE: This value is used to indicate searching only the entry at the base DN, resulting in only that entry being returned
SCOPE_ONELEVEL: This value is used to indicate searching all entries one level under the base DN - but not including the base DN and not including any entries under that one level under the base DN.
SCOPE_SUBTREE: This value is used to indicate searching of all entries at all levels under and including the specified base DN.
The third line specifies the key name where the user name is stored.