sssd: Allow limiting access by groups

This commit is contained in:
Timo Makinen 2025-01-31 16:42:23 +00:00
parent 71a69af472
commit 2c423fc0ca

View file

@ -28,3 +28,8 @@ ldap_tls_key = {{ tls_private }}/{{ inventory_hostname }}.key
auth_provider = krb5
krb5_realm = {{ kerberos_realm }}
{% if sssd_allow_groups is defined %}
access_provider = simple
simple_allow_groups = {{ sssd_allow_groups | join(',') }}
{% endif %}