9 lines
188 B
Django/Jinja
9 lines
188 B
Django/Jinja
#jinja2:lstrip_blocks: True
|
|
# {{ ansible_managed }}
|
|
|
|
{% for item in crowdsec_acquisition %}
|
|
{% if not loop.first %}
|
|
---
|
|
{% endif %}
|
|
{{ item | to_nice_yaml(indent=2) | trim }}
|
|
{% endfor %}
|