0Pricing
AWS Security Academy · Lesson

TLS Certificates with AWS Certificate Manager

Issue and attach certificates that encrypt data in transit.

TLS Certificates with AWS Certificate Manager is a free AWS Security Academy lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the AWS Security Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Encryption in Transit

Encryption in transit protects data as it moves across networks using TLS (Transport Layer Security), the protocol behind HTTPS.

Without it, attackers on the path could read or tamper with traffic. TLS requires certificates, and managing those is where ACM comes in.

What ACM Provides

AWS Certificate Manager (ACM) provisions, manages, and renews TLS certificates for AWS services.

  • Public certificates from ACM are free.
  • ACM handles renewal automatically, removing the risk of expired certificates.

Domain Validation

To issue a public certificate, ACM must verify you control the domain.

  • DNS validation adds a CNAME record (preferred, enables auto-renewal).
  • Email validation sends a confirmation to domain contacts.

DNS validation is recommended for hands-off renewal.

Where ACM Certificates Attach

ACM integrates with AWS services that terminate TLS, including:

  • Application and Network Load Balancers.
  • CloudFront distributions.
  • API Gateway.

You attach the certificate to the listener; the service handles the TLS handshake.

The Private Key Stays Protected

For ACM-issued certificates used by integrated services, the private key is managed by ACM and never exposed.

You cannot download it, which is a security benefit: there is no key file to leak. The certificate simply works with the supported service.

Automatic Renewal

ACM renews managed certificates automatically before they expire, as long as validation remains in place (DNS records present).

This eliminates outages caused by forgotten certificate renewals, a classic operational failure. Email-validated certs may need manual steps.

ACM Private CA

AWS Private CA (Certificate Authority) issues private certificates for internal use.

Use it for service-to-service mTLS, internal APIs, and devices that should trust your own CA rather than a public one. It is a paid service for internal PKI needs.

Importing Certificates

You can import third-party certificates into ACM for use with integrated services.

However, imported certificates are not auto-renewed; you must re-import before expiry. Native ACM-issued certs are preferable when possible for the renewal automation.

Region and Service Notes

ACM has region nuances worth remembering:

  • Certificates for CloudFront must be requested in us-east-1.
  • Certificates for regional resources (ALB) live in that resource's region.

This region rule is a common exam detail.

Choosing TLS Policies

When attaching a certificate to a load balancer or CloudFront, you also pick a security policy that defines allowed TLS versions and ciphers.

Modern policies require TLS 1.2 or higher and drop weak ciphers. Choosing a strong policy prevents clients from negotiating outdated, vulnerable encryption even when a valid certificate is present.

Enforcing TLS

Beyond providing certificates, enforce that traffic uses TLS.

  • Redirect HTTP to HTTPS on load balancers and CloudFront.
  • Use bucket policies (aws:SecureTransport) to deny non-TLS S3 access.

Issuing a certificate is not enough; usage must be required.

Quick Check

Recall an ACM detail.

Recap

You learned about ACM and TLS.

  • ACM provisions and auto-renews free public TLS certificates.
  • Attach them to ALB, CloudFront, and API Gateway; the private key stays protected.
  • CloudFront certs must be in us-east-1, and you must still enforce TLS usage.

Frequently asked questions

Is the “TLS Certificates with AWS Certificate Manager” lesson free?

Yes — the full text of “TLS Certificates with AWS Certificate Manager” is free to read here on the web, and the AWS Security Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the AWS Security Academy course, upgrade to CoddyKit PRO.

What will I learn in “TLS Certificates with AWS Certificate Manager”?

Issue and attach certificates that encrypt data in transit. You practise AWS Security Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start AWS Security Academy?

No prior experience is required. AWS Security Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “TLS Certificates with AWS Certificate Manager” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this AWS Security Academy lesson?

Yes. Every AWS Security Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Encrypting S3, EBS, and RDS at Rest
  2. Enforcing Default Encryption Everywhere
  3. TLS Certificates with AWS Certificate Manager
  4. Storing Credentials in Secrets Manager
← Back to AWS Security Academy