terraform-ecs icon indicating copy to clipboard operation
terraform-ecs copied to clipboard

HTTPS should be on port 80 an protocol should be HTTPS ?

Open molywitman opened this issue 8 years ago • 1 comments

In modules/alb/main.tf :

resource "aws_alb_listener" "https" { load_balancer_arn = "${aws_alb.alb.id}" port = "80" protocol = "HTTP"

default_action { target_group_arn = "${aws_alb_target_group.default.id}" type = "forward" } }

molywitman avatar Oct 25 '17 09:10 molywitman

Perhaps it should just be named "http", which duplicates #20

jedateach avatar May 04 '19 04:05 jedateach