You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
algo/deploy.yml

18 lines
358 B
YAML

---
- hosts: localhost
gather_facts: false
tasks:
- fail:
msg:
- 'You need to define `provider` variable. Read README.md for more details'
when: provider is not defined
- include: "{{ provider }}.yml"
when: provider is defined
- include: common.yml
- include: security.yml
- include: features.yml
- include: vpn.yml