ansible-role-git/templates/.config/git/allowedSignersFile.j2
Markus Pesch ab3618b924
Some checks reported errors
continuous-integration/drone/push Build was killed
fix: support ssh allowedSignersFile and revocationFile
2025-03-19 23:31:54 +01:00

9 lines
258 B
Django/Jinja

#
# {{ ansible_managed }}
#
{% if item.value.allowedSignersFile is defined and item.value.allowedSignersFile | length > 0%}
{% for entry in item.value.allowedSignersFile %}
{{ entry.principals | join(',') }} {{ entry.publicSSHKey }}
{% endfor %}
{% endif %}