From 26ab5a8a2d2475092ccbd6f12434a3bc88bb1d25 Mon Sep 17 00:00:00 2001 From: thamkrabok <31384816+thamkrabok@users.noreply.github.com> Date: Mon, 15 Jul 2024 22:24:24 +0700 Subject: [PATCH] update-health-check-override-port --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 09a6ebd..9af6061 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" {