From 624697cb3c590c920c8655118b6064e39fb735be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de> Date: Wed, 1 Sep 2021 12:58:26 +0200 Subject: [PATCH] fix: add SSH key for logging into remote systems --- tasks/configure_ssh_keys.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/configure_ssh_keys.yml b/tasks/configure_ssh_keys.yml index ad48a72..1effacb 100644 --- a/tasks/configure_ssh_keys.yml +++ b/tasks/configure_ssh_keys.yml @@ -6,7 +6,7 @@ key: "{{ vault_ssh_access.ssh_key }}" comment: "{{ vault_ssh_access.ssh_comment }}" -- name: copy deploykey files to managed servers +- name: copy SSH key files to managed servers copy: src: "{{ role_path }}/../ansible_vaults/{{ role_name }}/{{ item }}" dest: "~/.ssh/{{ item }}" @@ -16,4 +16,5 @@ loop: - "id_ed25519_deploykey" - "id_ed25519_deploykey.pub" - + - "id_ed25519_userkey" + - "id_ed25519_userkey.pub" -- GitLab