ansible/roles/root_keys/templates/authorized_keys.j2
Thomas Schmid 3dfff93c0e initial commit
Signed-off-by: Thomas Schmid <tom@lfence.de>
2022-01-11 20:29:31 +01:00

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 %}