From 839bd22410c8939a64f8e0bc73038836683793ac Mon Sep 17 00:00:00 2001 From: Gurarpit Singh Date: Sat, 9 Nov 2019 23:51:11 +0000 Subject: [PATCH] fix tfValidate case --- plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.go b/plugin.go index 2d7ef7d..fb57da2 100644 --- a/plugin.go +++ b/plugin.go @@ -113,7 +113,7 @@ func (p Plugin) Exec() error { case "fmt": commands = append(commands, tfFmt(p.Config)) case "validate": - commands = append(commands, tfValidate(p.Config)) + commands = append(commands, tfValidate()) case "plan": commands = append(commands, tfPlan(p.Config, false)) case "plan-destroy":