mirror of
https://github.com/trailofbits/algo
synced 2024-11-18 09:25:38 +00:00
18 lines
358 B
YAML
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
|
|
|