diff --git a/plugin.go b/plugin.go index fb57da2..8cea9bb 100644 --- a/plugin.go +++ b/plugin.go @@ -325,12 +325,9 @@ func tfPlan(config Config, destroy bool) *exec.Cmd { } func tfValidate() *exec.Cmd { - args := []string{ - "validate", - } return exec.Command( "terraform", - args..., + "validate", ) }