From f34ee96558e2723bd46d69d0e63df3d042d1bf5e Mon Sep 17 00:00:00 2001 From: Daniel Banck Date: Tue, 5 May 2026 16:30:50 +0200 Subject: [PATCH] Remove outdated value source comment --- internal/cloud/backend_context.go | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/internal/cloud/backend_context.go b/internal/cloud/backend_context.go index 89bf814152..af9ad10fc7 100644 --- a/internal/cloud/backend_context.go +++ b/internal/cloud/backend_context.go @@ -296,13 +296,7 @@ func (v *remoteStoredVariableValue) ParseVariableValue(mode configs.VariablePars } return &terraform.InputValue{ - Value: val, - - // We mark these as "from input" with the rationale that entering - // variable values into the HCP Terraform or Enterprise UI is, - // roughly speaking, a similar idea to entering variable values at - // the interactive CLI prompts. It's not a perfect correspondance, - // but it's closer than the other options. + Value: val, SourceType: terraform.ValueFromCloud, }, diags }