Live pricingverified 2026-04
Hidden costs · the multiplierUpdated 2026-04

The hidden cloud egress costs nobody flags

Your actual egress cost is 2-3x what the headline rates suggest. NAT Gateway processing, cross-AZ transfer, API Gateway charges, load balancer fees, VPC endpoint costs, all silently multiply your bill. Use the calculator for base rates, then read this page to understand the real total.

What you expect to pay
$4,300
50TB at AWS tiered egress rates
What you actually pay
$7,100
+ NAT Gateway, cross-AZ, LB, API GW fees

The Six Hidden Egress Costs

These are the charges that cloud providers document but do not prominently advertise. Each one is legitimate and avoidable with the right architecture decisions.

NAT Gateway Processing

$0.045/GB+ $0.045/hrHigh Impact

Every byte flowing through a NAT Gateway incurs a $0.045/GB processing charge, on top of the standard internet egress rate. This is separate from and additional to the egress fee itself. A NAT Gateway running 24/7 also costs $32.85/month in hourly charges. At 10TB/month, the processing fee alone is $450, often exceeding the base egress cost. If your NAT Gateway is in a different AZ from your workload, add another $0.01/GB for cross-AZ transfer.

How to mitigate

Enable VPC Gateway Endpoints for S3 and DynamoDB (free). Use Interface Endpoints for other AWS services. Consider IPv6 for internet-facing workloads. Use Regional NAT Gateway to reduce per-AZ costs.

Example at 10TB/month: $450/mo

Cross-AZ Data Transfer

$0.01/GB each way($0.02/GB round trip)High Impact

Data moving between Availability Zones costs $0.01/GB in each direction, totalling $0.02/GB for a request-response round trip. With a standard 3-AZ architecture, roughly two-thirds of internal service-to-service communication crosses AZ boundaries. A microservices architecture with 10TB/month of internal traffic generates $100-200/month in cross-AZ charges. Load-balanced traffic automatically distributes across AZs, making this unavoidable for HA deployments.

How to mitigate

Co-locate tightly coupled services in the same AZ. Use connection-aware load balancing (prefer same-AZ). Cache frequently accessed data locally. Consider AZ-aware routing for read-heavy workloads.

Example at 10TB/month: $200/mo

API Gateway Data Transfer

$0.09/GB(on top of per-request fees)Medium Impact

API Gateway charges standard internet egress rates for data transfer out, on top of its per-request pricing ($1.00-3.50 per million requests). This is often overlooked because it appears as a separate line item from your EC2/Lambda egress in the bill. For APIs returning large payloads (file downloads, data exports, paginated lists), the data transfer charges can exceed the request charges. A REST API serving 10TB/month pays $900 in data transfer alone.

How to mitigate

Compress API responses with gzip/brotli. Paginate large responses. Use CloudFront in front of API Gateway (caches GET requests, reduces origin egress). Consider direct ALB for non-REST workloads.

Example at 10TB/month: $900/mo

Load Balancer Data Processing

$0.008/GB (ALB/NLB)+ $0.0225/hr per ALBMedium Impact

Application Load Balancers (ALB) and Network Load Balancers (NLB) charge data processing fees per GB of data processed. At $0.008/GB it seems small, but at scale it adds up. An ALB processing 50TB/month pays $400/month in processing fees alone, plus $16.43/month in hourly charges. NLB has similar data processing charges. These fees are charged on all traffic, not just internet-bound traffic.

How to mitigate

There is no way to avoid load balancer processing fees if you need load balancing. Optimize by reducing payload sizes, enabling compression, and consolidating load balancers where possible. For internal services, consider service mesh or direct service discovery.

Example at 10TB/month: $80/mo

VPC Interface Endpoints

$0.01/GB + ~$0.01/hrper AZMedium Impact

Interface VPC Endpoints (for services like SQS, SNS, KMS, CloudWatch, ECR, etc.) charge both per-GB and per-hour fees. The hourly charge is approximately $0.01/hr per AZ, which is $21.90/month per AZ. In a 3-AZ setup, that is $65.70/month just for the endpoint to exist, before any data transfer. The per-GB charge of $0.01 applies to all data processed. However, Interface Endpoints can still save money by avoiding NAT Gateway processing fees ($0.045/GB).

How to mitigate

Always use Gateway Endpoints for S3 and DynamoDB (free, no per-GB or hourly charges). For other services, Interface Endpoints save money if your NAT Gateway traffic exceeds approximately 650GB/month per service. Calculate the break-even point before deploying.

Example at 10TB/month: $100 + $65/mo hourly/mo

Cross-Region Replication

$0.01-$0.02/GB(varies by region pair)High Impact

Multi-region disaster recovery architectures incur cross-region transfer costs on all replicated data. S3 Cross-Region Replication, RDS read replicas, DynamoDB Global Tables, and Aurora Global Database all generate cross-region egress charges of $0.01-0.02/GB. A DR setup replicating 10TB/month between US and EU regions costs $100-200/month in transfer fees. These costs double if you replicate to more than one secondary region.

How to mitigate

Evaluate whether cross-region replication is truly required for your recovery objectives. Consider replicating only critical data rather than entire datasets. Use S3 Intelligent-Tiering to reduce storage before replication. For read replicas, consider whether a warm standby in a single region meets your RTO requirements.

Example at 10TB/month: $100-200/mo

Hidden Cost Audit Checklist

Run through this 10-point checklist against your own cloud architecture to identify hidden egress costs. Each item can save hundreds or thousands of dollars per month.

1Are VPC Gateway Endpoints enabled for S3 and DynamoDB in every VPC?
2How much traffic is flowing through NAT Gateways? (Check VPC Flow Logs)
3What is your cross-AZ traffic volume? (Check Cost Explorer > Data Transfer)
4Are any Interface Endpoints costing more than the NAT Gateway they replace?
5Is API Gateway data transfer a significant portion of your bill?
6How many load balancers are running and what is their data processing cost?
7Is cross-region replication necessary for all replicated datasets?
8Could any NAT Gateway traffic be eliminated with IPv6?
9Are there services calling other services across AZ boundaries unnecessarily?
10Has the team reviewed the Data Transfer section of Cost Explorer recently?

Related Resources

Related Guides

Frequently Asked Questions

Is egress free within the same region on AWS?

It depends. Traffic within the same Availability Zone using private IP addresses is free. However, cross-AZ traffic costs $0.01/GB in each direction ($0.02/GB round trip), even within the same region. Since most production architectures use multiple AZs for high availability, this internal traffic adds up quickly. A service making 1 million requests per day across 3 AZs can generate hundreds of dollars in cross-AZ charges monthly, entirely invisible in headline egress rates.

What is cross-AZ data transfer cost on AWS?

Cross-AZ data transfer on AWS costs $0.01 per GB in each direction, totalling $0.02/GB for a round trip. This applies to all traffic between Availability Zones, including inter-service communication, database replication, and load-balanced traffic. With a typical 3-AZ architecture, approximately two-thirds of your internal traffic crosses AZ boundaries. This is one of the most commonly overlooked costs: a service processing 10TB/month internally can generate $100-200/month in cross-AZ charges alone.

How much does NAT Gateway cost on AWS?

AWS NAT Gateway charges $0.045 per GB for data processing plus $0.045 per hour for each gateway (approximately $32.85/month just for running). If your traffic also crosses AZ boundaries to reach the NAT Gateway, add another $0.01/GB. At 10TB/month through NAT Gateway, processing fees alone are $450/month, before any internet egress charges. For a detailed analysis and alternatives, see our dedicated NAT Gateway cost guide.

What are VPC endpoint costs?

VPC endpoints come in two types with very different pricing. Gateway endpoints for S3 and DynamoDB are completely free with no per-GB or hourly charges. Interface endpoints for all other AWS services cost $0.01 per GB of data processed plus approximately $0.01 per hour per AZ. A busy service using Interface endpoints across 3 AZs can cost $65/month in hourly charges alone, plus per-GB fees. Always use Gateway endpoints where available.

How do hidden costs affect my real egress rate?

Hidden costs typically add 50 to 200 percent on top of your base internet egress charges. A workload paying $0.09/GB for internet egress might actually pay $0.15-0.25/GB when NAT Gateway processing, cross-AZ transfer, and load balancer fees are included. The multiplier depends on your architecture: multi-AZ deployments with NAT Gateways see the highest hidden cost multipliers. Single-AZ deployments with VPC Gateway Endpoints have the lowest, but sacrifice availability.

How can I audit my architecture for hidden egress costs?

Start by reviewing your AWS Cost Explorer filtered by 'Data Transfer' charges. Look for NAT Gateway processing fees under the VPC section, cross-AZ charges appearing as 'Inter-AZ data transfer', and API Gateway data transfer charges. Enable VPC Flow Logs to understand traffic patterns between AZs. Check if you have VPC Gateway Endpoints enabled for S3 and DynamoDB. Review your load balancer data processing charges. Finally, audit NAT Gateway usage and consider alternatives like IPv6 or VPC endpoints for each traffic pattern.

All pricing verified from official AWS documentation. Last verified April 2026.

Updated 2 May 2026