Added copy-ssh-key.yaml

This commit is contained in:
2026-02-04 21:32:23 +01:00
parent 97959d70ef
commit 8b4be0d658
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
- 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') }}"