From cdc8abdae026ad87e26b7998dd65c84ec4584ac5 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 22 May 2018 22:01:27 -0400 Subject: [PATCH] add missing Operation to the Evaluator --- terraform/graph_walk_context.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/graph_walk_context.go b/terraform/graph_walk_context.go index bda2b787b..5492d4f84 100644 --- a/terraform/graph_walk_context.go +++ b/terraform/graph_walk_context.go @@ -62,6 +62,7 @@ func (w *ContextGraphWalker) EnterPath(path addrs.ModuleInstance) EvalContext { evaluator := &Evaluator{ Meta: w.Context.meta, Config: w.Context.config, + Operation: w.Operation, State: w.Context.state, StateLock: &w.Context.stateLock, ProviderSchemas: w.providerSchemas,