Skip to content
Snippets Groups Projects
Commit 7633e6d5 authored by Manuel Cintron's avatar Manuel Cintron
Browse files

Added pass through parameters to enable basic auth for downloads

parent 4fb8adb9
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,9 @@
owner: "{{ download.owner|default(omit) }}"
mode: "{{ download.mode|default(omit) }}"
validate_certs: "{{ download_validate_certs }}"
url_username: "{{ download.username|default(omit) }}"
url_password: "{{ download.password|default(omit) }}"
force_basic_auth: "{{ download.force_basic_auth|default(omit) }}"
register: get_url_result
until: "'OK' in get_url_result.msg or 'file already exists' in get_url_result.msg"
retries: 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment