From a89dcfd1b107a25e89b3e9c2f706f3ddbf7b8d46 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 19 Oct 2016 15:09:01 -0700 Subject: [PATCH] terraform: re-enable shadow tests --- terraform/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/context.go b/terraform/context.go index 80f610919..d15b9f6c2 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -435,7 +435,7 @@ func (c *Context) Apply() (*State, error) { } // Walk the graph - walker, err := c.walk(real, real, operation) + walker, err := c.walk(real, shadow, operation) if len(walker.ValidationErrors) > 0 { err = multierror.Append(err, walker.ValidationErrors...) }