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