From 6b398a83fba75af240f8dcd0ce6b167ad496bf4c Mon Sep 17 00:00:00 2001 From: Emmanouil Kampitakis Date: Fri, 21 May 2021 16:22:14 +0200 Subject: [PATCH] Migrate to collections --- tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/users.yml b/tasks/users.yml index 09e1ff3..099751c 100644 --- a/tasks/users.yml +++ b/tasks/users.yml @@ -10,7 +10,7 @@ become: true - name: Copy local ssh key to authorized keys file - authorized_key: + ansible.posix.authorized_key: user: "{{ os_user.name }}" key: "{{ item }}" loop: "{{ os_user.ssh_auth_keys }}"