Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
372 B

  1. ---
  2. - name: Fail if required matrix-bot-draupnir 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_bot_draupnir_access_token"
  7. - "matrix_bot_draupnir_management_room"
  8. - "matrix_bot_draupnir_container_network"
  9. when: "vars[item] == '' or vars[item] is none"