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.

25 lines
774 B

  1. ---
  2. - name: check openstack_auth_url value
  3. fail:
  4. msg: "openstack_auth_url is missing"
  5. when: openstack_auth_url is not defined or openstack_auth_url == ""
  6. - name: check openstack_username value
  7. fail:
  8. msg: "openstack_username is missing"
  9. when: openstack_username is not defined or openstack_username == ""
  10. - name: check openstack_password value
  11. fail:
  12. msg: "openstack_password is missing"
  13. when: openstack_password is not defined or openstack_password == ""
  14. - name: check openstack_region value
  15. fail:
  16. msg: "openstack_region is missing"
  17. when: openstack_region is not defined or openstack_region == ""
  18. - name: check tenant_id value
  19. fail:
  20. msg: "tenant_id is missing"
  21. when: openstack_tenant_id is not defined or openstack_tenant_id == ""