Skip to content

Commit

Permalink
chore: upgrade ALB to latest recommend SSL policy (#868)
Browse files Browse the repository at this point in the history
Update to the latest recommend ALB SSL policy which is FIPS 140-3 compliant.
  • Loading branch information
patheard authored Oct 15, 2024
1 parent dbd5039 commit 591f3c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aws/idp/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ resource "aws_lb_listener" "idp" {
load_balancer_arn = aws_lb.idp.arn
port = "443"
protocol = "HTTPS"
ssl_policy = "ELBSecurityPolicy-TLS13-1-2-2021-06"
ssl_policy = "ELBSecurityPolicy-TLS13-1-2-FIPS-2023-04"
certificate_arn = aws_acm_certificate.idp.arn

default_action {
Expand Down
2 changes: 1 addition & 1 deletion aws/load_balancer/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ resource "aws_lb_listener" "form_viewer_https" {
load_balancer_arn = aws_lb.form_viewer.arn
port = "443"
protocol = "HTTPS"
ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2019-08"
ssl_policy = "ELBSecurityPolicy-TLS13-1-2-FIPS-2023-04"
certificate_arn = aws_acm_certificate.form_viewer.arn

default_action {
Expand Down

0 comments on commit 591f3c8

Please sign in to comment.