|
@ -48,6 +48,7 @@ type ( |
|
|
BackendConfig []string `json:"backend-config"` |
|
|
BackendConfig []string `json:"backend-config"` |
|
|
Lock *bool `json:"lock"` |
|
|
Lock *bool `json:"lock"` |
|
|
LockTimeout string `json:"lock-timeout"` |
|
|
LockTimeout string `json:"lock-timeout"` |
|
|
|
|
|
Refresh *bool `json:"refresh"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// FmtOptions fmt options for the Terraform's fmt command
|
|
|
// FmtOptions fmt options for the Terraform's fmt command
|
|
@ -234,6 +235,11 @@ func initCommand(config InitOptions) *exec.Cmd { |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.LockTimeout)) |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.LockTimeout)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// True is default in TF
|
|
|
|
|
|
if config.Refresh != nil { |
|
|
|
|
|
args = append(args, fmt.Sprintf("-refresh=%t", *config.Refresh)) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// Fail Terraform execution on prompt
|
|
|
// Fail Terraform execution on prompt
|
|
|
args = append(args, "-input=false") |
|
|
args = append(args, "-input=false") |
|
|
|
|
|
|
|
@ -270,6 +276,9 @@ func tfApply(config Config) *exec.Cmd { |
|
|
if config.InitOptions.LockTimeout != "" { |
|
|
if config.InitOptions.LockTimeout != "" { |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.InitOptions.LockTimeout)) |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.InitOptions.LockTimeout)) |
|
|
} |
|
|
} |
|
|
|
|
|
if config.InitOptions.Refresh != nil { |
|
|
|
|
|
args = append(args, fmt.Sprintf("-refresh=%t", *config.InitOptions.Refresh)) |
|
|
|
|
|
} |
|
|
args = append(args, getTfoutPath()) |
|
|
args = append(args, getTfoutPath()) |
|
|
|
|
|
|
|
|
return exec.Command( |
|
|
return exec.Command( |
|
@ -328,6 +337,9 @@ func tfPlan(config Config, destroy bool) *exec.Cmd { |
|
|
if config.InitOptions.LockTimeout != "" { |
|
|
if config.InitOptions.LockTimeout != "" { |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.InitOptions.LockTimeout)) |
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.InitOptions.LockTimeout)) |
|
|
} |
|
|
} |
|
|
|
|
|
if config.InitOptions.Refresh != nil { |
|
|
|
|
|
args = append(args, fmt.Sprintf("-refresh=%t", *config.InitOptions.Refresh)) |
|
|
|
|
|
} |
|
|
return exec.Command( |
|
|
return exec.Command( |
|
|
"terraform", |
|
|
"terraform", |
|
|
args..., |
|
|
args..., |
|
|