mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-04-12 23:45:40 +02:00
16 lines
472 B
YAML
16 lines
472 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
vars:
|
|
matrix_systemd_services_list: [] # empty init as we only test coturn
|
|
run_setup: true
|
|
matrix_base_data_path: "/matrix"
|
|
# maybe those should be added in role default/main.yml
|
|
matrix_coturn_enabled: true
|
|
matrix_coturn_turn_external_ip_address: 127.0.0.1
|
|
matrix_coturn_turn_static_auth_secret: "VeryFakeSecret"
|
|
tasks:
|
|
- name: "Include matrix-coturn"
|
|
include_role:
|
|
name: "matrix-coturn"
|