Allow SSH keys as strings or filenames ("*.pub")
This commit is contained in:
parent
9fc9c2abfb
commit
e8fb66cc52
|
@ -20,7 +20,7 @@ Defaults (config/overwrite required):
|
||||||
ips
|
ips
|
||||||
|
|
||||||
Required for SSH:
|
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:
|
Common variables:
|
||||||
- `monitored_packages_install` (defaults: `true`): install plugings
|
- `monitored_packages_install` (defaults: `true`): install plugings
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
- name: Copy SSH authorized_keys for monitoring user
|
- name: Copy SSH authorized_keys for monitoring user
|
||||||
authorized_key:
|
authorized_key:
|
||||||
user: "{{ monitored_user }}"
|
user: "{{ monitored_user }}"
|
||||||
key: "{{ lookup('file', item) }}"
|
key: "{{ lookup('template', 'ssh-key.j2') }}"
|
||||||
key_options: '{{ lookup("template", "ssh-key-options.j2") }}'
|
key_options: '{{ lookup("template", "ssh-key-options.j2") }}'
|
||||||
manage_dir: yes
|
manage_dir: yes
|
||||||
loop: "{{ monitored_ssh_key_files }}"
|
loop: "{{ monitored_ssh_key_files }}"
|
||||||
|
|
1
templates/ssh-key.j2
Normal file
1
templates/ssh-key.j2
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{% if item.endswith('.pub') %}{{ lookup('file', item) }}{% else %}{{ item }}{% endif %}
|
Loading…
Reference in a new issue