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.
This commit is contained in:
parent
5863c581ee
commit
4472cffb35
|
@ -64,7 +64,7 @@ func (n *NodeApplyableResourceInstance) References() []*addrs.Reference {
|
|||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
return ret
|
||||
}
|
||||
|
||||
// GraphNodeEvalable
|
||||
|
|
Loading…
Reference in New Issue