Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
531 B

  1. ---
  2. # Validate configuration for matrix-element-call
  3. - name: Fail if required matrix-element-call settings are not defined
  4. ansible.builtin.fail:
  5. msg: >
  6. You need to define a required configuration setting (`{{ item.name }}`).
  7. when: "item.when | bool and vars[item.name] == ''"
  8. with_items:
  9. - {'name': 'matrix_element_call_base_path', when: true}
  10. - {'name': 'matrix_element_call_container_network', when: true}
  11. - {'name': 'matrix_element_call_image', when: true}
  12. - {'name': 'redis_image', when: true}