Skip to content

Commit

Permalink
LASB-3291 Fix static analysis warning: You should not use outdated/in…
Browse files Browse the repository at this point in the history
…secure TLS versions for encryption. You should be using TLS v1.2+.
  • Loading branch information
stone-dj committed Jun 5, 2024
1 parent 840d353 commit cdd8fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/environments/mlra/modules/alb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ resource "aws_cloudfront_distribution" "external" {
viewer_certificate {
acm_certificate_arn = aws_acm_certificate.cloudfront.arn
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1.2_2018"
minimum_protocol_version = "TLSv1.2_2021"
}

logging_config {
Expand Down

0 comments on commit cdd8fd7

Please sign in to comment.