2022-02-05 20:32:54 +00:00
|
|
|
---
|
2022-11-27 07:16:18 +00:00
|
|
|
|
2019-03-08 13:00:53 +00:00
|
|
|
- name: Fail if required Dimension settings not defined
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2022-11-27 07:16:18 +00:00
|
|
|
msg: >
|
|
|
|
You need to define a required configuration setting (`{{ item.name }}`).
|
|
|
|
when: "item.when | bool and vars[item.name] == ''"
|
2019-03-08 13:00:53 +00:00
|
|
|
with_items:
|
2022-11-27 07:16:18 +00:00
|
|
|
- {'name': 'matrix_dimension_access_token', when: true}
|
|
|
|
- {'name': 'matrix_dimension_database_hostname', when: "{{ matrix_dimension_database_engine == 'postgres' }}"}
|
2019-03-09 08:30:31 +00:00
|
|
|
|
2019-05-24 22:41:04 +00:00
|
|
|
- name: (Deprecation) Catch and report renamed Dimension variables
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-05-24 22:41:04 +00:00
|
|
|
msg: >-
|
|
|
|
Your configuration contains a variable, which now has a different name.
|
|
|
|
Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
|
|
|
|
when: "item.old in vars"
|
|
|
|
with_items:
|
|
|
|
- {'old': 'matrix_dimension_container_expose_port', 'new': '<superseded by matrix_dimension_container_http_host_bind_port>'}
|