TLS 1.3 Handshake Internals on AWS: ALB, CloudFront, and ACM
Quick summary: A full TLS handshake on every API call adds RTTs your p99 cannot afford. This guide walks TLS 1.3 1-RTT resumption, ACM cert rotation, and security policies on ALB and CloudFront.
Key Takeaways
- A full TLS handshake on every API call adds RTTs your p99 cannot afford
- This guide walks TLS 1
- 3 1-RTT resumption, ACM cert rotation, and security policies on ALB and CloudFront
- TLS 1
- 3 (June 2026) is the default forward path on CloudFront and modern ALB security policies ( )
Table of Contents
TLS 1.3 (June 2026) is the default forward path on CloudFront and modern ALB security policies (ELBSecurityPolicy-TLS13-1-2-...). Handshake cost moved from 2-RTT (TLS 1.2) to 1-RTT for new sessions; 0-RTT exists but is risky for non-idempotent APIs.
Handshake flow (architect view)
- ClientHello with key shares
- ServerHello + encrypted extensions + cert chain (ACM)
- Application data
Session tickets and resumption cut repeat handshake work—ensure clients enable reuse; broken middleboxes that disable tickets show up as p99 spikes after deploy.
AWS mapping
| Layer | Cert source | Knob |
|---|---|---|
| CloudFront | ACM us-east-1 | Security policy, HTTP/3 + TLS 1.3 |
| ALB | ACM regional | ssl_policy, mTLS optional |
| API Gateway | ACM / import | Minimum TLS 1.2 |
ACM rotation is automatic for DNS-validated certs—watch CloudWatch DaysToExpiry only for imported certs.
When this advice breaks
- Legacy IoT clients on TLS 1.0—must use isolated endpoint with older policy (compliance debt).
- Mutual TLS at scale—consider Verified Access or private CA with device provisioning.
What to do this week
- Audit ALB/CloudFront policies—remove TLS 1.0/1.1 unless documented exception.
- Measure
ssl_handshake_timevia CloudFront access logs or ALB target timing. - Enable OCSP stapling (default on CloudFront) and verify chain completeness.
What this guide doesn’t cover
mTLS service mesh—see Kubernetes track service mesh guide.
AWS Cloud Architect & AI Expert
AWS-certified cloud architect and AI expert with deep expertise in cloud migrations, cost optimization, and generative AI on AWS.