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"