Files
ansible-bind9-role/templates/named.conf.trust-anchors.j2
Daniel Akulenok e538644617 Spacing
2024-05-15 11:04:46 +02:00

13 lines
377 B
Django/Jinja

trust-anchors {
{% filter indent(bind9_config_indent, true) %}
{% for anchor in item.trust_anchors if item.trust_anchors is iterable %}
{{ (anchor.name | string) -}}
{{ (' ' + anchor.type) -}}
{{ (' ' + anchor.flags | string) -}}
{{ (' ' + anchor.protocol | string) -}}
{{ (' ' + anchor.algorithm | string) -}}
{{ (' "' + anchor.key + '"') -}};
{% endfor %}
{% endfilter %}};