0
0
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:
John Engelman 2015-11-09 20:44:38 -06:00
parent 991e651835
commit cf4a9d9dc2

View File

@ -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",