Base Plan What we are going to do: Provision EC2 instance through ansible Retrieving facts like IP of EC2 instance Building inventory using dynamic inventory Configuring webserver in EC2 instance using ansible Deploying a webpage in the webserver To make ansible connect with aws we require a python library named boto or boto3 so makeContinue reading “Configuring Webserver in AWS EC2 using Ansible”
Tag Archives: aws
EFS in AWS
EFS stands for Elastic File Storage, a service provided by AWS of file storage and can easily be used with EC2. We can use EFS across AZs, different regions. To learn more about EFS : https://aws.amazon.com/efs/ In my earlier post ( https://mynk.home.blog/2020/06/15/571/ ) I hosted a web page on EC2 using S3 and EBS storage.Continue reading “EFS in AWS”
Deploying WordPress and Mysql on EC2 in custom VPC using Terraform
Workflow Creating a VPC and in this two subnet Public Subnet – accessible from public world Private Subnet – not accessible from public subnet Public facing internet gateway for VPC Routing table for subnet Launching preconfigured wordpress instance in public subnet Launching preconfigured mysql instance in private subnet Provider and Key VPC and Subnet VPCContinue reading “Deploying WordPress and Mysql on EC2 in custom VPC using Terraform”
EBS and Security Groups in AWS
Cloud Trail CloudTrail is an management and governance service which keeps the logs/history of whatever we do in aws, these logs are know as events. It create a trail for recording these events with events we can do lots of things. We can find more details under view event. To look events using aws cliContinue reading “EBS and Security Groups in AWS”