New version of salt-formula from Saltstack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

key_create.sls 225B

123456789
  1. {%- set node_id = salt['pillar.get']('node_id') %}
  2. {%- set node_host = salt['pillar.get']('node_host') %}
  3. key_create_{{ node_id }}:
  4. module.run:
  5. saltkey.key_create:
  6. - id_: {{ node_id }}
  7. - host: {{ node_host }}