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.
 
 

14 lines
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}