ansible/roles/root-keys/templates/authorized_keys.j2

11 lines
183 B
Django/Jinja

{% if root_keys %}
{% for key in root_keys %}
{{ key }}
{% endfor %}
{% endif %}
{% if root_keys_host is defined %}
{% for key in root_keys_host %}
{{ key }}
{% endfor %}
{% endif %}