From c41ce75e0584bbcaa8e3be8fd437096b13f9fe3a Mon Sep 17 00:00:00 2001 From: theprashantyadav Date: Thu, 20 Jul 2023 14:34:45 +0530 Subject: [PATCH] feat: added acm module and new github-action --- main.tf | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.tf b/main.tf index b0aa5d9..ed277f7 100644 --- a/main.tf +++ b/main.tf @@ -168,7 +168,6 @@ resource "aws_lb_target_group" "main" { dynamic "stickiness" { for_each = length(keys(lookup(var.target_groups[count.index], "stickiness", {}))) == 0 ? [] : [lookup(var.target_groups[count.index], "stickiness", {})] - content { enabled = lookup(stickiness.value, "enabled", null) cookie_duration = lookup(stickiness.value, "cookie_duration", null) @@ -211,7 +210,6 @@ resource "aws_elb" "main" { connection_draining_timeout = var.connection_draining_timeout security_groups = var.security_groups subnets = var.subnets - dynamic "listener" { for_each = var.listeners content { @@ -230,6 +228,5 @@ resource "aws_elb" "main" { unhealthy_threshold = var.health_check_unhealthy_threshold healthy_threshold = var.health_check_healthy_threshold } - tags = module.labels.tags -} +} \ No newline at end of file