How do I Pip install directly from s3 using s3 module in Ansible?
with git I would:
- name: Install module from git repo
pip: name=\"git+git@bitbucket.org:MYORG/REPONAME.git\" executable=/usr/local/bin/pip2.7
sudo: yes
Can I do the same with s3 ?
Ideally it would look like:
- name: Install module from s3
pip: name=\"s3+s3://https://s3.amazonaws.com/BUCKETNAME/latest.zip\" executable=/usr/local/bin/pip2.7
sudo: yes