Custom VPC with Public Private subnet - Application deployed in Private subnet
This example demonstrates how to create a VPC that you can use for servers in a production environment. To improve resiliency, you deploy the servers in two Availability Zones, by using an Auto Scaling group and an Application Load Balancer. For additional security, you deploy the servers in private subnets. The servers receive requests through the load balancer. The servers can connect to the internet by using a NAT gateway. To improve resiliency, you deploy the NAT gateway in both Availability Zones.
Create custom VPC.
Create auto scaling group and create launch template configuration.
Create EC2 instances in private instances. As these are private instances, they do not have public IP address.
Bastion host instance is created in public subnet in the same VPC to access our instances in private subnets.
Now copy .pem file this file is used to SSH into private instances. also modify the permission on .pem file by using command - chmod 600 demo.pem
Able to login to EC2 instance from bastion host to our private EC2 instances now.
Deploy the application by running below command in one of the private subnet.
python3 -m http.server 8000
Now create load balancer. we can see error because we have not added port 8000.
When we edit the inbound rule and add port 8000 then error is gone.
we have created html page in private EC2 instance and we can now access the webpage. also please note that we have deployed http server only in one private subnet and on 2nd subnet nothing is deployed hence we can see 1 instance as healthy and 2nd instance as unhealthy which is perfectly fine.