mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 17:50:23 +00:00
12 lines
282 B
Text
12 lines
282 B
Text
# vim: sts=2 ts=2 sw=2 et ai
|
|
//
|
|
// Do any local configuration here
|
|
//
|
|
|
|
{% for key,args in salt['pillar.get']('bind:keys', {}).items() -%}
|
|
key "{{ key }}" {
|
|
algorithm {{ args['algorithm'] | default('HMAC-MD5.SIG-ALG.REG.INT') }};
|
|
secret "{{ args['secret'] }}";
|
|
};
|
|
{% endfor %}
|
|
|