Matrix Docker Ansible eploy
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.
 
 

18 lines
681 B

  1. ---
  2. - name: Fail if required settings not defined
  3. ansible.builtin.fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`).
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_mautrix_androidsms_appservice_token"
  9. - "matrix_mautrix_androidsms_homeserver_token"
  10. - "matrix_mautrix_imessage_appservice_token"
  11. - "matrix_mautrix_imessage_homeserver_token"
  12. - "matrix_mautrix_wsproxy_homeserver_address"
  13. - "matrix_mautrix_wsproxy_syncproxy_shared_secret"
  14. - "matrix_mautrix_wsproxy_syncproxy_homeserver_url"
  15. - "matrix_mautrix_wsproxy_syncproxy_database_hostname"
  16. - "matrix_mautrix_wsproxy_syncproxy_database_password"