Skip to content

Commit

Permalink
listenerp: dynamic ports assignment (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
eedygreen authored Mar 13, 2024
1 parent ee79a1d commit f909a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/relayers/nlb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ resource "aws_lb_target_group" "tcp" {
resource "aws_lb_listener" "http" {
for_each = toset(var.nodes_name)
load_balancer_arn = aws_lb.main[each.key].id
port = 9001
port = var.external_app_container_port
protocol = "TCP"

default_action {
Expand Down

0 comments on commit f909a6c

Please sign in to comment.