pvc-ansible/roles/base/templates/var/backups/ssh/authorized_keys.j2

9 lines
167 B
Plaintext
Raw Normal View History

2023-09-01 15:42:19 -04:00
# backup user authorized_keys
# {{ ansible_managed }}
2023-09-01 15:42:25 -04:00
{% if backup_keys is defined and backup_keys %}
2023-09-01 15:42:25 -04:00
{% for key in backup_keys %}
{{ key }}
{% endfor %}
{% endif %}