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.
 
 

9 lines
263 B

  1. ---
  2. - name: Fail if required variables are undefined
  3. ansible.builtin.fail:
  4. msg: "The `{{ item }}` variable must be defined and have a non-null value."
  5. with_items:
  6. - "matrix_pantalaimon_homeserver_url"
  7. when: "vars[item] == '' or vars[item] is none"