From c70ccf6cdca23862af6a8a960507b8d248cdd0e4 Mon Sep 17 00:00:00 2001 From: Sam Watson Date: Thu, 24 Jul 2025 16:05:06 -0400 Subject: [PATCH] Removed 'upgrade_install' arg in the main.tf for Helm 3.x compatability --- main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/main.tf b/main.tf index 3b57e1f..f5e3b83 100644 --- a/main.tf +++ b/main.tf @@ -30,7 +30,6 @@ resource "helm_release" "this" { dependency_update = lookup(var.app, "dependency_update", false) replace = lookup(var.app, "replace", false) timeout = lookup(var.app, "timeout", 300) - upgrade_install = lookup(var.app, "upgrade_install", false) values = var.values set = [for item in coalesce(var.set, []): { "name": item.name, "value": item.value}]