1. ACM certificate is used for…
- SSH to EC2
- HTTPS on load balancer
- S3 encryption only
- Terraform state
Source: doonops-curriculum/aws-routing--https-acm.md
Doonops lesson
HTTPS = lock on browser bar. ACM gives free cert if you prove domain ownership.
Certificate = padlock on https://yoursite.com. Attach cert to ALB listener 443.
Certificate = padlock on https://yoursite.com. Attach cert to ALB listener 443.
Certificate = padlock on https://yoursite.com. Attach cert to ALB listener 443.
Layman words first, then technical detail — read slowly
DNS validation in Route53 easiest on AWS. HTTP still on 80 can redirect to 443.
Modern HCL — names are examples, not from any third-party course
# see project files
Terraform runs on your computer — copy this HCL into a folder, then follow the local lab steps below.
Full implementation folder — copy all files, then run terraform commands
Copy every file below into one folder — same as a real repo module. Then run the local lab steps.
Suggested folder: Suggested path: ~/doonops-terraform/15-https-acm/
versions.tfSee file purpose in the code belowterraform {
required_version = ">= 1.9.0"
}
2–3 quick questions before the next module
Quick check — did this module stick?
1. ACM certificate is used for…