12 lines
392 B
Plaintext
12 lines
392 B
Plaintext
|
########################################################################
|
||
|
# File managed by Salt at <{{ source }}>.
|
||
|
# Your changes will be overwritten.
|
||
|
########################################################################
|
||
|
|
||
|
{%- for name, config in nsd.get('keys').items() %}
|
||
|
key:
|
||
|
name: "{{ name }}"
|
||
|
algorithm: "{{ config['algorithm'] }}"
|
||
|
secret: "{{ config['secret'] }}"
|
||
|
{%- endfor %}
|