Skip to content

Commit

Permalink
fix: vsphere provider user environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
James Oulman committed Jan 26, 2022
1 parent ae4a948 commit f9c6bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/providers/vsphere.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func SetVsphereEnv(username string, password string, extraEnvVars map[string]str
return "", errors.New("vsphere username or password are empty")
}

fmt.Printf("VSPHERE_USERNAME=%s\n", username)
fmt.Printf("VSPHERE_USER=%s\n", username)
fmt.Printf("VSPHERE_PASSWORD=%s\n", password)

for k, v := range extraEnvVars {
Expand Down

0 comments on commit f9c6bbb

Please sign in to comment.