From 89ac340af4ea59953ec6e4639f3fc0e1f8953b94 Mon Sep 17 00:00:00 2001 From: Paul Schoenfelder Date: Fri, 1 Jun 2018 12:50:19 -0400 Subject: [PATCH] [routing] set host listen port to 4000 rather than 80 --- modules/stack/config.tf | 2 +- modules/stack/routing.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/stack/config.tf b/modules/stack/config.tf index f36b88b..83e2e81 100644 --- a/modules/stack/config.tf +++ b/modules/stack/config.tf @@ -85,7 +85,7 @@ resource "aws_ssm_parameter" "secret_key_base" { resource "aws_ssm_parameter" "port" { count = "${length(var.chains)}" name = "/${var.prefix}/${element(keys(var.chains),count.index)}/port" - value = "80" + value = "4000" type = "String" } diff --git a/modules/stack/routing.tf b/modules/stack/routing.tf index 5c43704..edcc8f2 100644 --- a/modules/stack/routing.tf +++ b/modules/stack/routing.tf @@ -35,7 +35,7 @@ resource "aws_elb" "explorer" { } listener { - instance_port = 80 + instance_port = 4000 instance_protocol = "http" lb_port = 80 lb_protocol = "http"