Gurarpit Singh
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
4 deletions
-
plugin.go
|
@ -325,12 +325,9 @@ func tfPlan(config Config, destroy bool) *exec.Cmd { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func tfValidate() *exec.Cmd { |
|
|
func tfValidate() *exec.Cmd { |
|
|
args := []string{ |
|
|
|
|
|
"validate", |
|
|
|
|
|
} |
|
|
|
|
|
return exec.Command( |
|
|
return exec.Command( |
|
|
"terraform", |
|
|
"terraform", |
|
|
args..., |
|
|
"validate", |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|