Allow SSH keys as strings or filenames ("*.pub")

This commit is contained in:
Sven Velt 2025-03-30 13:25:28 +02:00
parent 9fc9c2abfb
commit e8fb66cc52
3 changed files with 3 additions and 2 deletions

View file

@ -20,7 +20,7 @@ Defaults (config/overwrite required):
ips
Required for SSH:
- `monitored_ssh_key_files` (defaults: `[]`): list(!) of SSH key strings(!)
- `monitored_ssh_key_files` (defaults: `[]`): list(!) of SSH key strings or filenames (ending with `.pub`)
Common variables:
- `monitored_packages_install` (defaults: `true`): install plugings

View file

@ -8,7 +8,7 @@
- name: Copy SSH authorized_keys for monitoring user
authorized_key:
user: "{{ monitored_user }}"
key: "{{ lookup('file', item) }}"
key: "{{ lookup('template', 'ssh-key.j2') }}"
key_options: '{{ lookup("template", "ssh-key-options.j2") }}'
manage_dir: yes
loop: "{{ monitored_ssh_key_files }}"

1
templates/ssh-key.j2 Normal file
View file

@ -0,0 +1 @@
{% if item.endswith('.pub') %}{{ lookup('file', item) }}{% else %}{{ item }}{% endif %}