8 lines
177 B
Django/Jinja
8 lines
177 B
Django/Jinja
# Managed by salt
|
|
{% for host, config in pillar['ssh_config'].items() %}
|
|
Host {{host}}
|
|
{% for key, val in config.items() %}
|
|
{{key}} {{val }}
|
|
{% endfor -%}
|
|
{% endfor -%}
|