In this recipe, we will outline how to install the required Python libraries needed to start interacting with the GCP orchestration system using Ansible. This step is mandatory since the required Python libraries must be installed on the Ansible control machine in order for all the Ansible GCP modules to work.
Installing the GCP SDK
Getting ready
You need to have sudo access on the machine in order to install the GCP Python libraries. You also need to have Python installed and the Python pip package, which we will use to install the GCP package.
How to do it...
- Install...