Skip to content

Commit

Permalink
Update load balancer SSL policy.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau committed Oct 16, 2024
1 parent a51b44f commit 6143127
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions indexer/load_balancer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ resource "aws_lb_listener" "public_https" {
certificate_arn = aws_acm_certificate.cert[0].arn
port = "443"
protocol = "HTTPS"
// Refer to https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
ssl_policy = "ELBSecurityPolicy-TLS13-1-2-2021-06"

default_action {
type = "fixed-response"
Expand Down Expand Up @@ -154,3 +156,5 @@ resource "aws_lb_target_group" "services" {
Environment = var.environment
}
}


0 comments on commit 6143127

Please sign in to comment.