mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
Don't need to quote since we aren't in a shell.
Also make sure to split on spaces in args.
This commit is contained in:
parent
991e651835
commit
cf4a9d9dc2
5
main.go
5
main.go
@ -61,7 +61,7 @@ func remoteConfigCommand(config remote) *exec.Cmd {
|
||||
fmt.Sprintf("-backend=%s", config.Backend),
|
||||
}
|
||||
for k, v := range config.Config {
|
||||
args = append(args, fmt.Sprintf("-backend-config=\"%s=%s\"", k, v))
|
||||
args = append(args, fmt.Sprintf("-backend-config=%s=%s", k, v))
|
||||
}
|
||||
return exec.Command(
|
||||
"terraform",
|
||||
@ -75,7 +75,8 @@ func planCommand(variables map[string]string) *exec.Cmd {
|
||||
"-out=plan.tfout",
|
||||
}
|
||||
for k, v := range variables {
|
||||
args = append(args, fmt.Sprintf("-var \"%s=%s\"", k, v))
|
||||
args = append(args, "-var")
|
||||
args = append(args, fmt.Sprintf("%s=%s", k, v))
|
||||
}
|
||||
return exec.Command(
|
||||
"terraform",
|
||||
|
Loading…
Reference in New Issue
Block a user