File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ import (
19
19
"github.com/hashicorp/terraform-ls/logging"
20
20
)
21
21
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
+
22
28
// cmdCtxFunc allows mocking of Terraform in tests while retaining
23
29
// ability to pass context for timeout/cancellation
24
30
type cmdCtxFunc func (context.Context , string , ... string ) * exec.Cmd
@@ -100,12 +106,10 @@ func (e *Executor) cmd(args ...string) (*command, error) {
100
106
// so we don't need to ask checkpoint for upgrades.
101
107
cmd .Env = append (cmd .Env , "CHECKPOINT_DISABLE=1" )
102
108
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
+ }
109
113
}
110
114
111
115
if e .execLogPath != "" {
You can’t perform that action at this time.
0 commit comments