arminc / terraform-ecs

AWS ECS terraform module
MIT License
804 stars 374 forks source link

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

Open molywitman opened 6 years ago

molywitman commented 6 years ago

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" } }

jedateach commented 5 years ago

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