From 4472cffb352f6ef14be5ba706ab90129c25f8fd9 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 10 May 2018 11:02:27 -0700 Subject: [PATCH] core: NodeApplyableResourceInstance.References returns its result A trivial mistake in the rework of this function meant that it was just discarding its result rather than returning it. It will now return its result as expected, allowing reference analysis to work for this node type. --- terraform/node_resource_apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/node_resource_apply.go b/terraform/node_resource_apply.go index ba103745b..a5fa5037d 100644 --- a/terraform/node_resource_apply.go +++ b/terraform/node_resource_apply.go @@ -64,7 +64,7 @@ func (n *NodeApplyableResourceInstance) References() []*addrs.Reference { } } - return nil + return ret } // GraphNodeEvalable