2016-03-29 12:50:22 +00:00
|
|
|
---
|
|
|
|
- name: check openstack_auth_url value
|
|
|
|
fail:
|
|
|
|
msg: "openstack_auth_url is missing"
|
|
|
|
when: openstack_auth_url is not defined or openstack_auth_url == ""
|
|
|
|
|
|
|
|
- name: check openstack_username value
|
|
|
|
fail:
|
|
|
|
msg: "openstack_username is missing"
|
|
|
|
when: openstack_username is not defined or openstack_username == ""
|
|
|
|
|
|
|
|
- name: check openstack_password value
|
|
|
|
fail:
|
|
|
|
msg: "openstack_password is missing"
|
|
|
|
when: openstack_password is not defined or openstack_password == ""
|
|
|
|
|
|
|
|
- name: check openstack_region value
|
|
|
|
fail:
|
|
|
|
msg: "openstack_region is missing"
|
|
|
|
when: openstack_region is not defined or openstack_region == ""
|
|
|
|
|
2017-11-05 08:40:41 +00:00
|
|
|
- name: check openstack_tenant_id value
|
2016-03-29 12:50:22 +00:00
|
|
|
fail:
|
2017-11-05 08:40:41 +00:00
|
|
|
msg: "openstack_tenant_id is missing"
|
2016-03-29 12:50:22 +00:00
|
|
|
when: openstack_tenant_id is not defined or openstack_tenant_id == ""
|