diff --git a/defaults/main.yaml b/defaults/main.yaml index 6790a5a..603aebb 100644 --- a/defaults/main.yaml +++ b/defaults/main.yaml @@ -7,6 +7,11 @@ openssh_address_family: any openssh_listen_addresses: - 0.0.0.0 +openssh_hostkeys: + - /etc/ssh/ssh_host_ed25519_key + - /etc/ssh/ssh_host_ecdsa_key + - /etc/ssh/ssh_host_rsa_key + openssh_allow_groups: ssh openssh_login_grace_time: 20 openssh_permit_root_login: 'no' diff --git a/templates/sshd_config.j2 b/templates/sshd_config.j2 index e2e0116..b2f6ab3 100644 --- a/templates/sshd_config.j2 +++ b/templates/sshd_config.j2 @@ -6,12 +6,10 @@ AddressFamily {{ openssh_address_family }} ListenAddress {{ a }} {% endfor %} -{% if openssh_hostkey_file is defined %} -HostKey {{ openssh_hostkey_file }} -{% else %} -HostKey /etc/ssh/openssh_host_ecdsa_key -HostKey /etc/ssh/openssh_host_ed25519_key -HostKey /etc/ssh/openssh_host_rsa_key +{% if openssh_hostkeys is defined %} +{% for hostkey in openssh_hostkeys %} +HostKey {{ hostkey }} +{% endfor %} {% endif %} {% if openssh_kexalgorithms is defined %}