Update hostkey templating
Multiple HostKeys can now be defined as a list, instead of allowing only one custom HostKey entry
This commit is contained in:
parent
4f4c5676e9
commit
9da630d612
@ -7,6 +7,11 @@ openssh_address_family: any
|
|||||||
openssh_listen_addresses:
|
openssh_listen_addresses:
|
||||||
- 0.0.0.0
|
- 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_allow_groups: ssh
|
||||||
openssh_login_grace_time: 20
|
openssh_login_grace_time: 20
|
||||||
openssh_permit_root_login: 'no'
|
openssh_permit_root_login: 'no'
|
||||||
|
@ -6,12 +6,10 @@ AddressFamily {{ openssh_address_family }}
|
|||||||
ListenAddress {{ a }}
|
ListenAddress {{ a }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% if openssh_hostkey_file is defined %}
|
{% if openssh_hostkeys is defined %}
|
||||||
HostKey {{ openssh_hostkey_file }}
|
{% for hostkey in openssh_hostkeys %}
|
||||||
{% else %}
|
HostKey {{ hostkey }}
|
||||||
HostKey /etc/ssh/openssh_host_ecdsa_key
|
{% endfor %}
|
||||||
HostKey /etc/ssh/openssh_host_ed25519_key
|
|
||||||
HostKey /etc/ssh/openssh_host_rsa_key
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if openssh_kexalgorithms is defined %}
|
{% if openssh_kexalgorithms is defined %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user