|
- # SPDX-FileCopyrightText: 2026 MDAD project contributors
- # SPDX-FileCopyrightText: 2026 Jason LaGuidice
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- - name: Fail if required RustPush settings not defined
- ansible.builtin.fail:
- msg: >-
- You need to define a required configuration setting (`{{ item.name }}`).
- when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
- with_items:
- - {'name': 'matrix_rustpush_bridge_appservice_token', when: true}
- - {'name': 'matrix_rustpush_bridge_homeserver_address', when: true}
- - {'name': 'matrix_rustpush_bridge_homeserver_token', when: true}
- - {'name': 'matrix_rustpush_bridge_database_hostname', when: "{{ matrix_rustpush_bridge_database_engine == 'postgres' }}"}
- - {'name': 'matrix_rustpush_bridge_container_network', when: true}
- - {'name': 'matrix_rustpush_bridge_metrics_proxying_hostname', when: "{{ matrix_rustpush_bridge_metrics_proxying_enabled }}"}
- - {'name': 'matrix_rustpush_bridge_metrics_proxying_path_prefix', when: "{{ matrix_rustpush_bridge_metrics_proxying_enabled }}"}
|