Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

12 lignes
488 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}