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.

14 lines
330B

  1. {%- set node_id = salt['pillar.get']('node_id') %}
  2. {%- set node_host = salt['pillar.get']('node_host') %}
  3. linux_state_all_nodes:
  4. salt.state:
  5. - tgt: 'salt:master'
  6. - tgt_type: pillar
  7. - sls: salt.reactor_sls.key_create
  8. - queue: True
  9. - pillar:
  10. node_id: {{ node_id }}
  11. node_host: {{ node_host }}