From 86cbcff962b760bd056c226744992da3a53a9eb9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 25 Jan 2017 12:32:09 -0800 Subject: [PATCH] terraform: fixup a merge issue We forgot to wrap some changes from the old branch into the new style --- terraform/graph_builder_plan.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terraform/graph_builder_plan.go b/terraform/graph_builder_plan.go index ecb8f4ae57..275cb32f3a 100644 --- a/terraform/graph_builder_plan.go +++ b/terraform/graph_builder_plan.go @@ -143,7 +143,9 @@ func (b *PlanGraphBuilder) init() { b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex { return &NodePlannableResource{ - NodeAbstractResource: a, + NodeAbstractCountResource: &NodeAbstractCountResource{ + NodeAbstractResource: a, + }, } }