mirror of
https://github.com/trailofbits/algo
synced 2024-11-18 09:25:38 +00:00
16 lines
279 B
YAML
16 lines
279 B
YAML
|
---
|
||
|
- name: Clean up the environment
|
||
|
file:
|
||
|
dest: "{{ ec2_venv }}"
|
||
|
state: absent
|
||
|
when: clean_environment
|
||
|
|
||
|
- name: Install requirements
|
||
|
pip:
|
||
|
name:
|
||
|
- boto>=2.5
|
||
|
- boto3
|
||
|
state: latest
|
||
|
virtualenv: "{{ ec2_venv }}"
|
||
|
virtualenv_python: python2.7
|