ansible/test/integration/targets/ansible-test-cloud-cs/tasks/main.yml
Matt Clay b752d07163 Overhaul ansible-test container management.
This brings ansible-test closer to being able to support split controller/remote testing.
2021-04-12 12:40:36 -07:00

8 lines
272 B
YAML

- name: Verify endpoints respond
uri:
url: "{{ item }}"
validate_certs: no
register: this
failed_when: "this.status != 401" # authentication is required, but not provided (requests must be signed)
with_items:
- "{{ ansible_env.CLOUDSTACK_ENDPOINT }}"