Created
April 30, 2023 18:28
-
-
Save SirPhemmiey/ac4dbb1d61acacae7c6a16dc16be71c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- 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