2022-02-05 20:32:54 +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:
|
2019-03-08 13:00:53 +00:00
|
|
|
msg: >-
|
|
|
|
You need to define a required configuration setting (`{{ item }}`) for using Dimension.
|
|
|
|
with_items:
|
|
|
|
- "matrix_dimension_access_token"
|
|
|
|
when: "matrix_dimension_enabled and vars[item] == ''"
|
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>'}
|