Skip to content

Instantly share code, notes, and snippets.

@SirPhemmiey
Created April 30, 2023 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SirPhemmiey/ac4dbb1d61acacae7c6a16dc16be71c7 to your computer and use it in GitHub Desktop.
Save SirPhemmiey/ac4dbb1d61acacae7c6a16dc16be71c7 to your computer and use it in GitHub Desktop.
---
- hosts: localhost
connection: local
gather_facts: false
vars:
pip_package_requirements:
- "requests"
- "google-auth"
- "google-auth-httplib2"
- "google-auth-oauthlib"
- "google-cloud"
- "apache-libcloud"
tasks:
- name: Install pip libraries
pip:
name: "{{ item }}"
state: present
with_items: "{{ pip_package_requirements }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment