Ansible playbooks are amazing, as you learned yesterday. What if you deploy a simple web app using Ansible? Sounds like a good project, right? Let’s get started! Task-01: Create 3 EC2 Instances 🖥️☁️ Log in to AWS Management Console 🖥️ Navigate...
Note: Write your managed host's IP address and their hostnames in the ./hosts-ip.yml file and don't forget to include it in your playbook. vim ./hosts-ip.yml hosts-entries: - ip: 192.168.10.1 hostname: mh1.example.com - ip: 192.168....