Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

14 satır
678 B

  1. ---
  2. - name: Fail if required LiveKit JWT Service settings are not defined
  3. ansible.builtin.fail:
  4. msg: >
  5. You need to define a required configuration setting (`{{ item.name }}`).
  6. when: "item.when | bool and vars[item.name] | length == 0"
  7. with_items:
  8. - {'name': 'matrix_livekit_jwt_service_hostname', when: true}
  9. - {'name': 'matrix_livekit_jwt_service_container_network', when: true}
  10. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_key', when: true}
  11. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_url', when: true}
  12. - {'name': 'matrix_livekit_jwt_service_environment_variable_livekit_secret', when: true}