Browse Source

Match lock option name to TF CLI

pull/41/head
marcin.suterski 8 years ago
parent
commit
346612f2fa
No known key found for this signature in database GPG Key ID: A6CF8B51D99C0C92
  1. 6
      plugin.go

6
plugin.go

@ -31,7 +31,7 @@ type (
InitOptions struct { InitOptions struct {
BackendConfig string `json:"backend-config"` BackendConfig string `json:"backend-config"`
Lock *bool `json:"lock-state"` Lock *bool `json:"lock"`
LockTimeout string `json:"lock-timeout"` LockTimeout string `json:"lock-timeout"`
} }
@ -125,12 +125,12 @@ func initCommand(config InitOptions) *exec.Cmd {
args = append(args, fmt.Sprintf("-backend-config=%s", config.BackendConfig)) args = append(args, fmt.Sprintf("-backend-config=%s", config.BackendConfig))
} }
// False is default // True is default in TF
if config.Lock != nil { if config.Lock != nil {
args = append(args, fmt.Sprintf("-lock=%t", *config.Lock)) args = append(args, fmt.Sprintf("-lock=%t", *config.Lock))
} }
// "0s" is default // "0s" is default in TF
if config.LockTimeout != "" { if config.LockTimeout != "" {
args = append(args, fmt.Sprintf("-lock-timeout=%s", config.LockTimeout)) args = append(args, fmt.Sprintf("-lock-timeout=%s", config.LockTimeout))
} }

Loading…
Cancel
Save