mirror of
https://github.com/trailofbits/algo
synced 2024-11-16 12:12:55 +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
|