Files
ansible-bind9-role/templates/named.conf.trust-anchors.j2
Daniel Akulenok 73d8632c49 trust anchors
2024-05-14 14:34:49 +02:00

12 lines
376 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 %}};