ansible-role-bind9/templates/named/named.conf.acl.j2

12 lines
169 B
Plaintext
Raw Normal View History

2022-02-21 20:41:31 +00:00
#
# {{ ansible_managed }}
#
{% for acl in bind9_acls %}
acl "{{ acl.name }}" {
{% for permission in acl.permissions %}
{{ permission }};
{% endfor %}
};
{% endfor %}