14 lines
328 B
YAML
14 lines
328 B
YAML
- hosts: all
|
|
become: yes
|
|
|
|
tasks:
|
|
- name: Install Proxmox Root SSH key
|
|
authorized_key:
|
|
user: root
|
|
key: "{{ lookup('file', 'id_ed25519_proxmox.pub') }}"
|
|
|
|
- name: Install Proxmox Root SSH key
|
|
authorized_key:
|
|
user: root
|
|
key: "{{ lookup('file', 'id_ed25519_semaphore.pub') }}"
|