|
@@ -31,7 +31,7 @@ resource "aws_lb_listener" "searchhead-alb-listener-https" {
|
|
|
load_balancer_arn = aws_lb.searchhead-alb.arn
|
|
|
port = "443"
|
|
|
protocol = "HTTPS"
|
|
|
- ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2019-08" # PFS, TLS1.2, most "restrictive" policy (took awhile to find that)
|
|
|
+ ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2020-10" # PFS, TLS1.2, and GCM; most "restrictive" policy
|
|
|
certificate_arn = aws_acm_certificate.cert.arn
|
|
|
|
|
|
default_action {
|
|
@@ -44,7 +44,7 @@ resource "aws_lb_listener" "searchhead-alb-listener-8000" {
|
|
|
load_balancer_arn = aws_lb.searchhead-alb.arn
|
|
|
port = "8000"
|
|
|
protocol = "HTTPS"
|
|
|
- ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2019-08" # PFS, TLS1.2, most "restrictive" policy (took awhile to find that)
|
|
|
+ ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2020-10" # PFS, TLS1.2, and GCM; most "restrictive" policy
|
|
|
certificate_arn = aws_acm_certificate.cert.arn
|
|
|
|
|
|
default_action {
|
|
@@ -74,7 +74,7 @@ resource "aws_lb_listener" "searchhead-alb-listener-api" {
|
|
|
load_balancer_arn = aws_lb.searchhead-alb.arn
|
|
|
port = "8089"
|
|
|
protocol = "HTTPS"
|
|
|
- ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2019-08" # PFS, TLS1.2, most "restrictive" policy (took awhile to find that)
|
|
|
+ ssl_policy = "ELBSecurityPolicy-FS-1-2-Res-2020-10" # PFS, TLS1.2, and GCM; most "restrictive" policy
|
|
|
certificate_arn = aws_acm_certificate.cert.arn
|
|
|
|
|
|
default_action {
|