6 lines
185 B
YAML
6 lines
185 B
YAML
---
|
|
- name: Add ansible user SSH public key
|
|
ansible.posix.authorized_key:
|
|
user: ansible
|
|
key: "{{ lookup('file', '/home/xbazzi/.ssh/ansible_ed25519.pub') }}"
|
|
state: present |