add OrphanOutputTransformer to the plan graph

make sure orphaned outputs appear in the plan as well
This commit is contained in:
James Bardin 2017-11-08 11:11:26 -05:00
parent 68b07a766a
commit 9283568dca
1 changed files with 6 additions and 0 deletions

View File

@ -84,6 +84,12 @@ func (b *PlanGraphBuilder) Steps() []GraphTransformer {
Module: b.Module,
},
// Create orphan output nodes
&OrphanOutputTransformer{
Module: b.Module,
State: b.State,
},
// Attach the configuration to any resources
&AttachResourceConfigTransformer{Module: b.Module},