1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-03-03 15:22:17 +02:00
2023-02-09 14:53:56 +02:00

11 lines
374 B
YAML

---
- name: Fail if required Chatgpt settings not defined
ansible.builtin.fail:
msg: >-
You need to define a required configuration setting (`{{ item.name }}`).
when: "item.when | bool and vars[item.name] == ''"
with_items:
- {'name': 'matrix_bot_chatgpt_openai_api_key', when: true}
- {'name': 'matrix_bot_chatgpt_matrix_bot_username', when: true}