I am trying to configure Ansible AWX to use my ldap server to authentication.
I can use `ldapsearch` to query my ldap server like so ...
```
ldapsearch -H ldaps://
ldap.example.com -D "cn=Manager,dc=example,dc=com" -W -b "dc=
example.com"
```
And, of course, I had replaced `
example.com` with my domain.
I also have an AWX (Opensource version of Ansible Tower). I am trying to configure my AWX to use my ldap server for authentication. So I logon to the AWC Web UI and go to settings and start fillout of the form for LDAP Auth:
```
LDAP Server URI: ldaps://
ldap.example.com:636LDAP Bind DN: cn=Manager,dc=example,dc=com
LDAP Bind Password: XXXXXXXXX
LDAP User DN Template: uid="%(user)s",dc=example,dc=com
LDAP Group Type: PosixUIDGroupType
```
I have no idea and I am just guessing at what I need to use for `LDAP User DN Template` or `LDAP Group Type`.
No matter what I have tried I cannot authenticate against my LDAP server :(