mirror of
https://github.com/vale981/matrix-docker-ansible-deploy
synced 2025-03-06 10:21:40 -05:00
10 lines
288 B
YAML
10 lines
288 B
YAML
![]() |
---
|
||
|
|
||
|
- 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"
|