mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-03 20:54:24 -07:00
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>
This commit is contained in:
parent
bb2169340d
commit
f3ecf4c7f8
12 changed files with 121 additions and 5 deletions
|
@ -0,0 +1,15 @@
|
|||
dn: cn=config
|
||||
add: olcTLSCACertificateFile
|
||||
olcTLSCACertificateFile: /usr/local/share/ca-certificates/ca.crt
|
||||
-
|
||||
add: olcTLSCertificateFile
|
||||
olcTLSCertificateFile: /etc/ldap/localhost.crt
|
||||
-
|
||||
add: olcTLSCertificateKeyFile
|
||||
olcTLSCertificateKeyFile: /etc/ldap/localhost.key
|
||||
-
|
||||
add: olcAuthzRegexp
|
||||
olcAuthzRegexp: {0}"UID=([^,]*)" uid=$1,ou=users,dc=example,dc=com
|
||||
-
|
||||
add: olcTLSVerifyClient
|
||||
olcTLSVerifyClient: allow
|
|
@ -0,0 +1,3 @@
|
|||
GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
SPDX-FileCopyrightText: Ansible Project
|
|
@ -18,5 +18,6 @@ homeDirectory: /home/ldaptest
|
|||
cn: LDAP Test
|
||||
gecos: LDAP Test
|
||||
displayName: LDAP Test
|
||||
userPassword: test1pass!
|
||||
mail: ldap.test@example.com
|
||||
sn: Test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue