VPC with Public and Private Subnets Using NAT

Nov 07, 2024

This posts touches on a VPC which we could use for production severs. We’d be deploying the servers in two Availability Zones (AZs), using an Auto Scaling group with managed instances, and an Application Load Balancer (ALB). The servers will be deployed in private subnets for security, be managed by an Auto Scaling group, and receive traffic from the load balancer. Since they are in a private subnet, connectivity to the Internet would be granted through the NAT gatway.

example-vpc.pngExample VPC

Configuring Routing

When the VPC is created using the console, a route table will be created for the public subnets with local routes and routes to the internet gateway (IGW). The pivate subnets will also have a route table created with local routes, and routes to the NAT gateway, egress-only internet gateway, and gateway VPC endpoint.

Below is an example route table for the public subnets, note that we’ll be creating IPv4-only subnets instead of dual stack subnets.

DestinationTarget
10.0.0.0/16local
0.0.0.0/0igw-id

An example route table for one of the private subnets would be as follows.

DestinationTarget
10.0.0.0/16local
0.0.0.0/0nat-gateway-id

Security configuration

An example securty group to associate with the servers would be as follows. It will allow traffic from the load balancer on the listening port and protocol, in addition to health check traffic.

SourceProtocolPort RangeComments
ID of the load balancer security grouplistener protocollistener portAllows inbound traffic from the load balancer on the listener port
ID of the load balancer security grouphealth check protocolhealth check portAllows inbound health check traffic from the load balancer

Above is an overview on how the VPC would be set up, for please refer this documentation1 for detailed information about configuring the same on AWS.


  1. See https://docs.aws.amazon.com/vpc/latest/userguide/vpc-example-private-subnets-nat.html ↩︎

The RPC Protocol

A Brief Introduction to AWS CloudFormation