Files
ansible-bind9-role/templates/named.conf.trust-anchors.j2
Daniel Akulenok 71abdaa2e4 style: Standardize indentation across all templates
- Update indentation in controls, DLZ, and DNSSEC policy templates
- Normalize spacing in options and logging templates
- Ensure consistent formatting throughout role
2026-01-27 23:18:40 +01:00

13 lines
421 B
Django/Jinja

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