Skip to content

Commit f44ea8a

Browse files
committed
terraform/exec: Extract passthrough variables for better visibility
1 parent d051a16 commit f44ea8a

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

internal/terraform/exec/exec.go

+10-6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ import (
1919
"github.com/hashicorp/terraform-ls/logging"
2020
)
2121

22+
// Environment variables to pass through to Terraform
23+
var passthroughEnvVars = []string{
24+
// This allows Terraform to find custom-built providers
25+
"HOME", "USER",
26+
}
27+
2228
// cmdCtxFunc allows mocking of Terraform in tests while retaining
2329
// ability to pass context for timeout/cancellation
2430
type cmdCtxFunc func(context.Context, string, ...string) *exec.Cmd
@@ -100,12 +106,10 @@ func (e *Executor) cmd(args ...string) (*command, error) {
100106
// so we don't need to ask checkpoint for upgrades.
101107
cmd.Env = append(cmd.Env, "CHECKPOINT_DISABLE=1")
102108

103-
// This allows Terraform to find custom-built providers
104-
if v := os.Getenv("HOME"); v != "" {
105-
cmd.Env = append(cmd.Env, "HOME="+v)
106-
}
107-
if v := os.Getenv("USER"); v != "" {
108-
cmd.Env = append(cmd.Env, "USER="+v)
109+
for _, key := range passthroughEnvVars {
110+
if value := os.Getenv(key); value != "" {
111+
cmd.Env = append(cmd.Env, key+"="+value)
112+
}
109113
}
110114

111115
if e.execLogPath != "" {

0 commit comments

Comments
 (0)