From 5abee0d16217c8de35e4bb0978b2aee4001ad77b Mon Sep 17 00:00:00 2001 From: VishwajitNagulkar Date: Wed, 4 Oct 2023 15:49:57 +0530 Subject: [PATCH] =?UTF-8?q?Feat:=20=F0=9F=9A=80=20removed=20unnecessary=20?= =?UTF-8?q?attributes=20from=20cert-manager?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- addons/cert-manager/main.tf | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/addons/cert-manager/main.tf b/addons/cert-manager/main.tf index f2f17cd..1c7f1a8 100644 --- a/addons/cert-manager/main.tf +++ b/addons/cert-manager/main.tf @@ -4,12 +4,4 @@ module "helm_addon" { manage_via_gitops = var.manage_via_gitops helm_config = local.helm_config addon_context = var.addon_context -} - -resource "kubernetes_namespace_v1" "this" { - count = try(local.helm_config["create_namespace"], true) && local.helm_config["namespace"] != "cert-manager" ? 1 : 0 - - metadata { - name = local.helm_config["namespace"] - } -} +} \ No newline at end of file