DEV Community

Discussion on: Deploying Django Application on AWS with Terraform. Minimal Working Setup

Collapse
 
antoine_beneteau_d2c0daeb profile image
Antoine

Do you have any idea ? It’s increasing so much

Collapse
 
amitkhanna profile image
Amit Khanna

You have a couple of alternatives to save costs on NAT Gateway.

  • VPC Endpoints (free for internal traffic but only works with certain AWS services like S3, and DynamoDB)
  • Another alternative is you have an EC2 in the public subnet and run it as a NAT Instance for outgoing traffic which will be a much cheaper option.

Hope this gives you some directions.