HTTPS Load Balancer Setup
Step 1: Create the ALB
module "web_alb" {
source = "registry.patterneddesigns.ca/patterneddesigns/alb/aws"
version = "3.0.0"
name = "web-alb"
vpc_id = module.vpc.vpc_id
subnets = module.vpc.public_subnets
}
Step 2: Configure HTTPS Listener
Add an HTTPS listener with your SSL certificate.
Step 3: Verify Configuration
Test the ALB endpoint and verify SSL is working correctly.