infra/make-example-stack.yml

15 lines
295 B
YAML
Raw Normal View History

2018-10-02 09:12:23 +03:00
---
- name: make example stack
hosts: localhost
gather_facts: false
become: false
pre_tasks:
- fail: msg="{{ item }} should be set"
when: lookup('vars', item) is undefined
with_items:
- pve_address
- pve_login
- pve_password
roles:
- make-example-stack