mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
Match lock option name to TF CLI
This commit is contained in:
parent
73851ed5d8
commit
346612f2fa
@ -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))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user