From 14d879928fa3667b72ea567b59fd0ade22e305c7 Mon Sep 17 00:00:00 2001 From: Valentyna Bukhalova Date: Mon, 25 Mar 2024 10:37:27 +0100 Subject: [PATCH] test --- .../eks/eks_cluster_autoscaler_policies/castai.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/eks/eks_cluster_autoscaler_policies/castai.tf b/examples/eks/eks_cluster_autoscaler_policies/castai.tf index 8fca4f88..d5c381b6 100644 --- a/examples/eks/eks_cluster_autoscaler_policies/castai.tf +++ b/examples/eks/eks_cluster_autoscaler_policies/castai.tf @@ -78,6 +78,12 @@ module "castai-eks-cluster" { aws_security_group.additional.id, ] instance_profile_arn = module.castai-eks-role-iam.instance_profile_arn + target_group = [ + { + arn = "aws_lb_target_group.default.arn" + port = 80 + } + ] } test_node_config = { @@ -98,6 +104,12 @@ module "castai-eks-cluster" { volume_iops = 3100 volume_throughput = 130 imds_v1 = true + target_group = [ + { + arn = "aws_lb_target_group.default.arn" + port = 80 + } + ] } }