infra/roles/inventory/templates/apps.yml.j2

14 lines
257 B
Plaintext
Raw Normal View History

2018-10-02 09:12:23 +03:00
---
{% for s in stack.apps %}
- name: executing step{{loop.index-1}}
hosts: step{{loop.index-1}}
strategy: free
gather_facts: True
roles:
- {role: prepare-config}
- {role: apps}
vars:
- step: {{loop.index-1}}
tags: [ "apps" ]
{% endfor %}