<snip />
> Has anyone used URI and GET_URL to successfully download any software from
> CloudFront?
get_url without the headers work for me.
$ cat test.yml
---
- hosts: localhost
tasks:
- get_url:
url: "
https://cdn.zmanda.com/downloads/community/Amanda/3.5.1/Redhat_Enterprise_7.0/amanda-backup_server-3.5.1-1.rhel7.x86_64.rpm"
dest: /tmp
$ ansible-playbook test.yml
PLAY [localhost] ************************************************************************
TASK [get_url] **************************************************************************
changed: [localhost]
PLAY RECAP ******************************************************************************
localhost : ok=1 changed=1 unreachable=0 failed=0 skipped=0
$ file /tmp/amanda-backup_server-3.5.1-1.rhel7.x86_64.rpm
/tmp/amanda-backup_server-3.5.1-1.rhel7.x86_64.rpm: RPM v3.0 bin i386/x86_64
--
Kai Stian Olstad