summaryrefslogtreecommitdiffstats
path: root/salt/top.sls
blob: 4a5cbcf0edd027d267dc93ae95d320ca05077119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{%- set id = salt['grains.get']('id') -%}
{%- set roles = salt['http.query']('http://machine-roles.lysergic.dev:4580/roles', decode=True, decode_type='json', params={"machine": id})['dict']['roles'] -%}

{{ saltenv }}:
  '*':
    - common
  {%- if roles | length > 0 %}
  '{{ id }}':
  {% for role in roles %}
    - role.{{ role }}
  {%- endfor %}
  {%- endif %}