From a0c38dec65bf13e647c1f770539aece9abd3652f Mon Sep 17 00:00:00 2001 From: Daniel Ciaglia Date: Tue, 15 Oct 2024 12:52:25 +0200 Subject: [PATCH] switch hardcoded value to `false` (#1) --- controllers/tf_controller_backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/tf_controller_backend.go b/controllers/tf_controller_backend.go index f9534eb9..40e5347e 100644 --- a/controllers/tf_controller_backend.go +++ b/controllers/tf_controller_backend.go @@ -344,7 +344,7 @@ terraform { initRequest := &runner.InitRequest{ TfInstance: tfInstance, - Upgrade: true, + Upgrade: false, // ToDo: this should be configurable ForceCopy: true, // Terraform: terraformBytes, }