mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
94f23ee647
ldap: Add client certificate support (#6668)
* Set up secure ldap server
* ldap: Added client cert options
Shamelessly copied from https://github.com/andrewshulgin/ldap_search
* Added tests for ldap client authentication
* Add changelog fragment
* Make sure the openssl commands work on older versions of openssl
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* Remove aliases for new arguments
* Add required_together to ldap module declerations
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit f3ecf4c7f8
)
Co-authored-by: Gnonthgol <gnonthgol+github@gmail.com>
41 lines
881 B
Text
41 lines
881 B
Text
dn: ou=users,dc=example,dc=com
|
|
objectClass: organizationalUnit
|
|
objectClass: top
|
|
ou: users
|
|
|
|
dn: uid=ldaptest,ou=users,dc=example,dc=com
|
|
uid: ldaptest
|
|
uidNumber: 1111
|
|
gidNUmber: 100
|
|
objectClass: top
|
|
objectClass: posixAccount
|
|
objectClass: shadowAccount
|
|
objectClass: person
|
|
objectClass: organizationalPerson
|
|
objectClass: inetOrgPerson
|
|
loginShell: /bin/sh
|
|
homeDirectory: /home/ldaptest
|
|
cn: LDAP Test
|
|
gecos: LDAP Test
|
|
displayName: LDAP Test
|
|
userPassword: test1pass!
|
|
mail: ldap.test@example.com
|
|
sn: Test
|
|
|
|
dn: uid=second,ou=users,dc=example,dc=com
|
|
uid: second
|
|
uidNumber: 1112
|
|
gidNUmber: 102
|
|
objectClass: top
|
|
objectClass: posixAccount
|
|
objectClass: shadowAccount
|
|
objectClass: person
|
|
objectClass: organizationalPerson
|
|
objectClass: inetOrgPerson
|
|
loginShell: /bin/sh
|
|
homeDirectory: /home/second
|
|
cn: Second Test
|
|
gecos: Second Test
|
|
displayName: Second Test
|
|
mail: second.test@example.com
|
|
sn: Test
|