crowdsec/test/ansible/prepare_tests.yml

22 lines
511 B
YAML
Raw Normal View History

# vim: set ft=yaml.ansible:
---
- name: "Prepare fixture for the functional tests"
hosts: all
gather_facts: true
vars_files:
- vars/go.yml
- vars/mysql.yml
- vars/postgres.yml
roles:
- name: make_fixture
environment:
PGHOST: 127.0.0.1
PGPORT: 5432
PGPASSWORD: "{{ postgresql_users[0].password }}"
PGUSER: postgres
MYSQL_HOST: localhost
MYSQL_PORT: 3306
MYSQL_PASSWORD: "{{ mysql_root_password }}"
MYSQL_USER: "root"