mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-24 18:22:41 +02:00
17 lines
358 B
YAML
17 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
|
|
|