diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-07-27 21:46:38 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-07-27 21:46:38 +0200 |
commit | 7ad67630c40c0669cc1c140ff2d42311fb780b47 (patch) | |
tree | 1c4d97ca3acea54f842c10b15eed71edb4d8e86d /roles/openldap/README.md | |
parent | b1030896c67c59c12db51a65d842169d3b73339a (diff) | |
download | ansible_collection-7ad67630c40c0669cc1c140ff2d42311fb780b47.tar.gz |
openldap move access control to hostettings
Diffstat (limited to 'roles/openldap/README.md')
-rw-r--r-- | roles/openldap/README.md | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/roles/openldap/README.md b/roles/openldap/README.md index ed34f52..fb30537 100644 --- a/roles/openldap/README.md +++ b/roles/openldap/README.md @@ -25,7 +25,31 @@ ldap: DESC 'MANDATORY: OpenSSH LPK objectclass' MAY ( sshPublicKey $ uid ) )" - + ous: + - users + - apps + - groups + - unixgroups + groupsofnames: + in: 'ou=groups,dc=example,dc=com' + names: + - ldap_admin + - external_auth + access_control: + - >- + {0}to attrs=userPassword + by self write + by group/groupOfNames/member=cn=external_auth,ou=groups,dc=example,dc=com read + by anonymous auth + by * none + - >- + {1}to attrs=shadowLastChange + by self write + by * read + - >- + {2}to * + by users read + by group/groupOfNames/member=cn=ldap_admin,ou=groups,dc=example,dc=com manage ``` ## Notes |