Skip to content

Commit

Permalink
Merge pull request #14 from telia-oss/update-ssl-policy
Browse files Browse the repository at this point in the history
Use TLS 1.2 security policy for the external listener
  • Loading branch information
Kristian authored Nov 16, 2018
2 parents 6103080 + 0368093 commit 1ba60be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/atc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ resource "aws_lb_listener" "external" {
port = "${var.web_port}"
protocol = "${upper(var.web_protocol)}"
certificate_arn = "${var.web_certificate_arn}"
ssl_policy = "${var.web_certificate_arn == "" ? "" : "ELBSecurityPolicy-2015-05"}"
ssl_policy = "${var.web_certificate_arn == "" ? "" : "ELBSecurityPolicy-TLS-1-2-2017-01"}"

default_action {
target_group_arn = "${aws_lb_target_group.external.arn}"
Expand Down

0 comments on commit 1ba60be

Please sign in to comment.