We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f7f3f0 commit 71c7347Copy full SHA for 71c7347
1 file changed
roles/ssh_hardening/tasks/crypto_kex.yml
@@ -18,3 +18,8 @@
18
ansible.builtin.set_fact:
19
ssh_kex: "{{ ssh_kex_85_default }}"
20
when: sshd_version is version('8.5', '>=')
21
+
22
+- name: Set kex according to openssh-version if openssh >= 9.9
23
+ ansible.builtin.set_fact:
24
+ ssh_kex: "{{ ssh_kex_99_default }}"
25
+ when: sshd_version is version('9.9', '>=')
0 commit comments