Files
ansible-bind9-role/templates/named.conf.statistics-channels.j2
2022-08-04 12:41:40 +02:00

10 lines
470 B
Django/Jinja

{% macro statistics_channels(statistics_channels) %}
statistics-channels {
{% filter indent(2, true) %}
{% for channel in statistics_channels if statistics_channels is iterable %}
inet {{ channel.address | string }}
{{- (' port ' + channel.port | string) if channel.port is defined and channel.port -}}
{{- (' allow {\n' + functions.simple_item_list(channel.allow) + '};\n') if channel.allow is defined and channel.allow -}}
{% endfor %}
{% endfilter %}};
{% endmacro %}