terraform: fixup a merge issue

We forgot to wrap some changes from the old branch into the new style
This commit is contained in:
Mitchell Hashimoto 2017-01-25 12:32:09 -08:00
parent 1427075005
commit 86cbcff962
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 3 additions and 1 deletions

View File

@ -143,7 +143,9 @@ func (b *PlanGraphBuilder) init() {
b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex { b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex {
return &NodePlannableResource{ return &NodePlannableResource{
NodeAbstractResource: a, NodeAbstractCountResource: &NodeAbstractCountResource{
NodeAbstractResource: a,
},
} }
} }