2021-03-24 03:46:08 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Fail if required variables are undefined
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2021-03-24 03:46:08 +00:00
|
|
|
msg: "The `{{ item }}` variable must be defined and have a non-null value."
|
|
|
|
with_items:
|
|
|
|
- "matrix_bot_mjolnir_access_token"
|
|
|
|
- "matrix_bot_mjolnir_management_room"
|
|
|
|
when: "vars[item] == '' or vars[item] is none"
|