In this section, we will be deploying a sample phonebook application using AWS Cloud resources, such as RDS for the database instance and EC2 as our compute server where our code will be deployed.
Deploying the sample application
How to do it...
This sample application will be deployed using a playbook, as follows:
--- - hosts: localhost
roles: - phonebook
How it works...
This application will use the same password that we used while creating a DB instance for creating a database and the user for our application. This sample application playbook will create and...