You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
|
|
- name: Fail if required variables are undefined
|
|
fail:
|
|
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"
|