In this chapter, we will learn how to use some third-party tools that will help us in building the required architecture. Like all of the sections in this chapter, the information will be broken down into steps:
- The first tool we will be learning about is Ansible. It is a provisioning and orchestrating tool, that helps in automating several parts of an infrastructure. Depending on when you are reading this book, the Ansible project's homepage (https://www.ansible.com/) will look something like this:
![](https://static.packt-cdn.com/products/9781787288676/graphics/assets/a5f8df9d-0b00-418c-8257-1a9ec9d33c1b.png)
- The installation process for Ansible is different for different operating systems. The instructions for some popular operating systems are as follows:
-
- For Ubuntu:
sudo apt-get update
sudo apt-get install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible
-
- For Linux...