From 346612f2fad46085f0c989ddc6212c893fedb82a Mon Sep 17 00:00:00 2001 From: "marcin.suterski" Date: Thu, 11 May 2017 12:40:08 -0400 Subject: [PATCH] Match lock option name to TF CLI --- plugin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.go b/plugin.go index 4ff90be..b30e89a 100644 --- a/plugin.go +++ b/plugin.go @@ -31,7 +31,7 @@ type ( InitOptions struct { BackendConfig string `json:"backend-config"` - Lock *bool `json:"lock-state"` + Lock *bool `json:"lock"` 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)) } - // False is default + // True is default in TF if config.Lock != nil { args = append(args, fmt.Sprintf("-lock=%t", *config.Lock)) } - // "0s" is default + // "0s" is default in TF if config.LockTimeout != "" { args = append(args, fmt.Sprintf("-lock-timeout=%s", config.LockTimeout)) }