mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2026-03-25 14:27:12 +00:00
12 lines
492 B
Django/Jinja
12 lines
492 B
Django/Jinja
{{ file_managed_by_ansible }}
|
|
# CIS Configurations
|
|
# 5.3.3.2.3 Ensure password complexity is configured
|
|
{% if rhel9cis_passwd_complex_option == 'minclass' %} # pragma: allowlist secret
|
|
minclass = {{ rhel9cis_passwd_minclass }}
|
|
{% endif %}
|
|
{% if rhel9cis_passwd_complex_option == 'credits' %} # pragma: allowlist secret
|
|
dcredit = {{rhel9cis_passwd_dcredit }}
|
|
ucredit = {{ rhel9cis_passwd_ucredit }}
|
|
ocredit = {{ rhel9cis_passwd_ocredit }}
|
|
lcredit = {{ rhel9cis_passwd_lcredit }}
|
|
{% endif %}
|