Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

20 行
871 B

  1. # SPDX-FileCopyrightText: 2022 MDAD project contributors
  2. # SPDX-FileCopyrightText: 2024 wjbeckett
  3. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - name: Fail if required LiveKit JWT Service settings are not defined
  8. ansible.builtin.fail:
  9. msg: >
  10. You need to define a required configuration setting (`{{ item.name }}`).
  11. when: "item.when | bool and vars[item.name] | length == 0"
  12. with_items:
  13. - {'name': 'matrix_livekit_jwt_service_hostname', when: true}
  14. - {'name': 'matrix_livekit_jwt_service_container_network', when: true}
  15. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_key', when: true}
  16. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_url', when: true}
  17. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_secret', when: true}