2025-02-28 16:41:49 +00:00
# SPDX-FileCopyrightText: 2019 - 2025 Slavi Pantaleev
2025-03-05 04:30:50 +00:00
# SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
2025-02-28 16:41:49 +00:00
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2019-01-16 16:05:48 +00:00
---
2025-01-17 08:19:17 +00:00
- name : (Deprecation) Catch and report renamed coturn settings
2024-01-15 09:16:08 +00:00
ansible.builtin.fail :
msg : >-
Your configuration contains a variable, which now has a different name.
2025-03-05 04:30:50 +00:00
Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
2024-01-15 09:16:08 +00:00
when : "item.old in vars"
with_items :
- {'old': 'matrix_coturn_docker_network', 'new' : 'matrix_coturn_container_network' }
2025-02-19 09:48:12 +00:00
- {'old': 'matrix_coturn_container_stun_plain_host_bind_port', 'new' : 'superseded by matrix_coturn_container_stun_plain_host_bind_port_tcp and matrix_coturn_container_stun_plain_host_bind_port_udp' }
- {'old': 'matrix_coturn_container_stun_tls_host_bind_port', 'new' : 'superseded by matrix_coturn_container_stun_tls_host_bind_port_tcp and matrix_coturn_container_stun_tls_host_bind_port_udp' }
2025-02-24 05:59:37 +00:00
- {'old': 'matrix_coturn_container_image_name_prefix', 'new' : 'matrix_coturn_docker_image_registry_prefix' }
2024-01-15 09:16:08 +00:00
2024-02-18 07:52:00 +00:00
- name : Fail if matrix_coturn_authentication_method is invalid
ansible.builtin.fail :
msg : >-
Invalid authentication method specified in `matrix_coturn_authentication_method`
when : "matrix_coturn_authentication_method not in ['auth-secret', 'lt-cred-mech']"
2025-01-17 08:19:17 +00:00
- name : Fail if required coturn settings not defined
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2019-05-24 22:41:04 +00:00
msg : >-
2024-02-18 07:52:00 +00:00
You need to define a required configuration setting (`{{ item.name }}`).
when : "item.when | bool and vars[item.name] == ''"
2019-01-16 16:05:48 +00:00
with_items :
2024-02-18 07:52:00 +00:00
- {'name': 'matrix_coturn_turn_static_auth_secret', when : "{{ matrix_coturn_authentication_method == 'auth-secret' }}" }
- {'name': 'matrix_coturn_lt_cred_mech_username', when : "{{ matrix_coturn_authentication_method == 'lt-cred-mech' }}" }
- {'name': 'matrix_coturn_lt_cred_mech_password', when : "{{ matrix_coturn_authentication_method == 'lt-cred-mech' }}" }