From b9005486a7923ee192dd621462592304c20bc622 Mon Sep 17 00:00:00 2001 From: thamkrabok <31384816+thamkrabok@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:53:41 +0700 Subject: [PATCH] feat/update-override-port-healthcheck --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 3e7f138..61e89ae 100644 --- a/main.tf +++ b/main.tf @@ -142,6 +142,7 @@ resource "aws_lb_target_group" "this" { healthy_threshold = lookup(each.value.health_check, "healthy_threshold", null) unhealthy_threshold = lookup(each.value.health_check, "unhealthy_threshold", null) matcher = lookup(each.value.health_check, "matcher", null) + port = lookup(each.value.health_check, "port", null) } dynamic "stickiness" {