ansible-role-unix-users/templates/config.j2

16 lines
283 B
Plaintext
Raw Normal View History

2022-07-19 15:54:56 +00:00
#jinja2: lstrip_blocks: True
#
# {{ ansible_managed }}
#
{% for config in unix_user.value.ssh.config %}
{% for property, value in config.items() %}
{% if property == "Host" %}
{{ property }} {{ value }}
{% else %}
2022-07-20 14:09:04 +00:00
{{ property }} {{ value }}
2022-07-19 15:54:56 +00:00
{% endif %}
{% endfor %}
2023-06-09 14:48:56 +00:00
{% endfor %}