blob: 76f04af8376fcc0e6d4409e940c67a98121cb6e2 [file] [log] [blame]
---
- name: Install GCE Dependencies
hosts: localhost
connection: local
become: yes
tasks:
- name: Install or Remove GCE Dependencies based on state requested
pip:
name: "{{ item }}"
state: "{{ state | default('present') }}"
with_items:
- apache-libcloud
- pyopenssl
- pycrypto
- crypto
- google-api-python-client
- google-auth
- google-auth-httplib2