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