summaryrefslogtreecommitdiff
path: root/roles
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-08-03 09:57:15 +0300
committerLars Wirzenius <liw@liw.fi>2022-08-03 09:57:15 +0300
commitbe489ab2c20c640d3f72c24cff1c3f7a93ebe15a (patch)
tree9a6dcccc85cc7bb970b51e693d7d774c7a27756c /roles
parent17b69932312ab05d311008065373194f3bb953de (diff)
downloaddebian-ansible-be489ab2c20c640d3f72c24cff1c3f7a93ebe15a.tar.gz
fix: allow ed25519 for certs as well
Sponsored-by: author
Diffstat (limited to 'roles')
-rw-r--r--roles/sshd/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml
index f4c2104..c94cf07 100644
--- a/roles/sshd/tasks/main.yml
+++ b/roles/sshd/tasks/main.yml
@@ -26,7 +26,7 @@
when: sshd_host_key is defined and sshd_host_cert is defined
copy:
content: |
- HostKeyAlgorithms ssh-ed25519
+ HostKeyAlgorithms ssh-ed25519,ssh-ed25519-cert-v01@openssh.com
HostKey /etc/ssh/ssh_host_key
HostCertificate /etc/ssh/ssh_host_key-cert.pub
dest: /etc/ssh/sshd_config.d/host_id.conf