6 lines
211 B
YAML
6 lines
211 B
YAML
- name: Add SSH public key to authorized_keys
|
|
authorized_key:
|
|
user: jacques # User on the remote VM
|
|
key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}" # Path to your local public key
|
|
state: present
|