From 175e4559998f87d8443266f3d70b3431915ef190 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 3 Jul 2014 12:32:00 -0700 Subject: [PATCH] terraform: add better logging --- terraform/context.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/context.go b/terraform/context.go index 0888d52b89..ebf4d7bd38 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -460,6 +460,7 @@ func (c *Context) validateWalkFn(rws *[]string, res *[]error) depgraph.WalkFunc return nil } + log.Printf("[INFO] Validating resource: %s", rn.Resource.Id) ws, es := rn.Resource.Provider.ValidateResource( rn.Type, rn.Resource.Config) for i, w := range ws {