2024-01-03 11:05:59 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Fail if required matrix-static-files settings not defined
|
|
|
|
ansible.builtin.fail:
|
|
|
|
msg: >-
|
|
|
|
You need to define a required configuration setting (`{{ item.name }}`).
|
|
|
|
when: "item.when | bool and vars[item.name] == ''"
|
|
|
|
with_items:
|
|
|
|
- {'name': 'matrix_static_files_container_labels_well_known_matrix_endpoint_traefik_hostname', when: "{{ matrix_static_files_container_labels_well_known_matrix_endpoint_enabled }}"}
|
|
|
|
- {'name': 'matrix_static_files_container_labels_well_known_matrix_endpoint_traefik_path_prefix', when: "{{ matrix_static_files_container_labels_well_known_matrix_endpoint_enabled }}"}
|
|
|
|
|
2024-01-03 12:39:17 +00:00
|
|
|
- {'name': 'matrix_static_files_container_labels_base_domain_traefik_hostname', when: "{{ matrix_static_files_container_labels_base_domain_enabled }}"}
|
|
|
|
- {'name': 'matrix_static_files_container_labels_base_domain_traefik_path_prefix', when: "{{ matrix_static_files_container_labels_base_domain_enabled }}"}
|
|
|
|
|