Files
update-playbook/add_keys.yaml

6 lines
211 B
YAML
Raw Normal View History

2025-02-14 08:20:54 -05:00
- 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