monakhos/ansible/templates/ssh/known_hosts
Matthieu Bessat 9dc0dbc514 feat(ssh): known hosts from profile
refactored to use enabled_profiles var
2024-07-16 20:47:21 +02:00

6 lines
230 B
Text

# Auto-generated known hosts file, try to **not** edit this file
{% for enabled_profile in enabled_profiles %}
# {{ enabled_profile.name }}
{{ lookup('file', tempdir_known_hosts.path + '/' + enabled_profile.name) }}
{% endfor %}