[stable-2.14] Fix url lookup test to use test container (#80284) (#80287)

(cherry picked from commit 054aa92158)
pull/80313/head
Matt Clay 2 years ago committed by GitHub
parent 1b981d3fba
commit 7bb078bd74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,11 +1,11 @@
- name: Test that retrieving a url works
set_fact:
web_data: "{{ lookup('url', 'https://gist.githubusercontent.com/abadger/9858c22712f62a8effff/raw/43dd47ea691c90a5fa7827892c70241913351963/test') }}"
web_data: "{{ lookup('url', 'https://{{ httpbin_host }}/get?one') }}"
- name: Assert that the url was retrieved
assert:
that:
- "'one' in web_data"
- "'one' in web_data.args"
- name: Test that retrieving a url with invalid cert fails
set_fact:

Loading…
Cancel
Save