mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 17:50:23 +00:00
82 lines
2.3 KiB
Text
82 lines
2.3 KiB
Text
//
|
|
// Do any local configuration here
|
|
//
|
|
|
|
// Consider adding the 1918 zones here, if they are not used in your
|
|
// organization
|
|
//include "/etc/bind/zones.rfc1918";
|
|
|
|
{%- macro zone(key, args, file, masters) %}
|
|
zone "{{ key }}" IN {
|
|
type {{ args['type'] }};
|
|
{% if args['type'] == 'forward' -%}
|
|
{% if args['forward'] is defined -%}
|
|
forward {{ args['forward'] }};
|
|
{%- endif %}
|
|
forwarders {
|
|
{% for forwarder in args.forwarders -%}
|
|
{{ forwarder }};
|
|
{%- endfor %}
|
|
};
|
|
{% else -%}
|
|
{% if args['dnssec'] is defined and args['dnssec'] -%}
|
|
file "{{ file }}.signed";
|
|
{% else -%}
|
|
file "{{ file }}";
|
|
{%- endif %}
|
|
{%- if args['allow-update'] is defined %}
|
|
allow-update { {{args['allow-update']}}; };
|
|
{%- endif %}
|
|
{%- if args.update_policy is defined %}
|
|
update-policy {
|
|
{%- for policy in args.update_policy %}
|
|
{{ policy }};
|
|
{%- endfor %}
|
|
};
|
|
{%- endif %}
|
|
{%- if args['allow-transfer'] is defined %}
|
|
allow-transfer { {{ args.get('allow-transfer', []) | join('; ') }}; };
|
|
{%- endif %}
|
|
{%- if args['also-notify'] is defined %}
|
|
also-notify { {{ args.get('also-notify', []) | join('; ') }}; };
|
|
{%- endif %}
|
|
{%- if args['type'] == 'slave' %}
|
|
{%- if args['allow-notify'] is defined %}
|
|
allow-notify { {{ args.get('allow-notify', []) | join('; ') }}; };
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- if args['type'] == "master" -%}
|
|
{% if args['notify'] %}
|
|
notify yes;
|
|
{% else %}
|
|
notify no;
|
|
{%- endif -%}
|
|
{% else %}
|
|
notify no;
|
|
{%- if masters is iterable and masters is not string %}
|
|
masters {
|
|
{%- for item in masters %}
|
|
{{ item }};
|
|
{%- endfor %}
|
|
};
|
|
{%- else %}
|
|
masters { {{ masters }} };
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
};
|
|
{%- endmacro %}
|
|
|
|
{% for key, args in salt['pillar.get']('bind:configured_zones', {}).items() -%}
|
|
{%- set file = args.get('file', salt['pillar.get']("bind:available_zones:" + key + ":file")) %}
|
|
{%- set masters = args.get('masters', salt['pillar.get']("bind:available_zones:" + key + ":masters")) %}
|
|
{{ zone(key, args, file, masters) }}
|
|
{% endfor %}
|
|
|
|
{%- for name, data in salt['pillar.get']('bind:configured_acls', {}).items() %}
|
|
acl {{ name }} {
|
|
{%- for d in data %}
|
|
{{ d }};
|
|
{%- endfor %}
|
|
};
|
|
{%- endfor %}
|