mirror of
https://github.com/trailofbits/algo.git
synced 2026-09-14 05:37:47 +02: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
|
|
|