Currently, the aws_lb_listener is provisioned using the default SSL policy "ELBSecurityPolicy-2016-08" for HTTPS Listeners. Adding this var we can select the desired policy, but it still setting ELBSecurityPolicy-2016-08 as the default policy.
variable "alb_ssl_policy" {
default = "ELBSecurityPolicy-2016-08"
description = "Select a SSL policy for the ALB Listener"
}
Currently, the aws_lb_listener is provisioned using the default SSL policy
"ELBSecurityPolicy-2016-08"
for HTTPS Listeners. Adding this var we can select the desired policy, but it still settingELBSecurityPolicy-2016-08
as the default policy.