terraform: add module destroy node to graph
This commit is contained in:
parent
1f10dfef2d
commit
23b6acc29d
|
@ -63,6 +63,14 @@ func (n *GraphNodeConfigModule) Expand(b GraphBuilder) (GraphNodeSubgraph, error
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
// Add the destroy marker to the graph
|
||||||
|
t := &ModuleDestroyTransformer{}
|
||||||
|
if err := t.Transform(graph); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Build the actual subgraph node
|
// Build the actual subgraph node
|
||||||
return &graphNodeModuleExpanded{
|
return &graphNodeModuleExpanded{
|
||||||
Original: n,
|
Original: n,
|
||||||
|
@ -148,15 +156,6 @@ func (n *graphNodeModuleExpanded) EvalTree() EvalNode {
|
||||||
Config: &resourceConfig,
|
Config: &resourceConfig,
|
||||||
Variables: n.Variables,
|
Variables: n.Variables,
|
||||||
},
|
},
|
||||||
|
|
||||||
&EvalOpFilter{
|
|
||||||
Ops: []walkOperation{walkPlanDestroy},
|
|
||||||
Node: &EvalSequence{
|
|
||||||
Nodes: []EvalNode{
|
|
||||||
&EvalDiffDestroyModule{Path: n.Graph.Path},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,8 +73,10 @@ aws_instance.bar
|
||||||
aws_instance.foo
|
aws_instance.foo
|
||||||
module inputs
|
module inputs
|
||||||
module inputs
|
module inputs
|
||||||
|
plan-destroy
|
||||||
`
|
`
|
||||||
|
|
||||||
const testGraphNodeModuleExpandFlattenStr = `
|
const testGraphNodeModuleExpandFlattenStr = `
|
||||||
aws_instance.foo
|
aws_instance.foo
|
||||||
|
plan-destroy
|
||||||
`
|
`
|
||||||
|
|
|
@ -74,6 +74,7 @@ module.child.aws_instance.child
|
||||||
module.child.var.var
|
module.child.var.var
|
||||||
module.child.output.output
|
module.child.output.output
|
||||||
module.child.aws_instance.child
|
module.child.aws_instance.child
|
||||||
|
module.child.plan-destroy
|
||||||
module.child.var.var
|
module.child.var.var
|
||||||
aws_instance.parent
|
aws_instance.parent
|
||||||
`
|
`
|
||||||
|
@ -88,6 +89,7 @@ module.child.aws_instance.child
|
||||||
module.child.var.var
|
module.child.var.var
|
||||||
module.child.output.output
|
module.child.output.output
|
||||||
module.child.aws_instance.child
|
module.child.aws_instance.child
|
||||||
|
module.child.plan-destroy
|
||||||
module.child.var.var
|
module.child.var.var
|
||||||
aws_instance.parent
|
aws_instance.parent
|
||||||
`
|
`
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package terraform
|
package terraform
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"github.com/hashicorp/terraform/dag"
|
"github.com/hashicorp/terraform/dag"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,21 +43,10 @@ func (t *ModuleDestroyTransformer) Transform(g *Graph) error {
|
||||||
// Create the node
|
// Create the node
|
||||||
n := &graphNodeModuleDestroy{Path: g.Path}
|
n := &graphNodeModuleDestroy{Path: g.Path}
|
||||||
|
|
||||||
// Add it to the graph
|
// Add it to the graph. We don't need any edges because
|
||||||
|
// it can happen whenever.
|
||||||
g.Add(n)
|
g.Add(n)
|
||||||
|
|
||||||
// Connect the inputs to the bottom of the graph so that it happens
|
|
||||||
// first.
|
|
||||||
for _, v := range g.Vertices() {
|
|
||||||
if v == n {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if g.DownEdges(v).Len() == 0 {
|
|
||||||
g.Connect(dag.BasicEdge(v, n))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,7 +55,7 @@ type graphNodeModuleDestroy struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *graphNodeModuleDestroy) Name() string {
|
func (n *graphNodeModuleDestroy) Name() string {
|
||||||
return "module destroy (for plan)"
|
return "plan-destroy"
|
||||||
}
|
}
|
||||||
|
|
||||||
// GraphNodeEvalable impl.
|
// GraphNodeEvalable impl.
|
||||||
|
@ -76,6 +66,29 @@ func (n *graphNodeModuleDestroy) EvalTree() EvalNode {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GraphNodeFlattenable impl.
|
||||||
|
func (n *graphNodeModuleDestroy) Flatten(p []string) (dag.Vertex, error) {
|
||||||
|
return &graphNodeModuleDestroyFlat{
|
||||||
|
graphNodeModuleDestroy: n,
|
||||||
|
PathValue: p,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type graphNodeModuleDestroyFlat struct {
|
||||||
|
*graphNodeModuleDestroy
|
||||||
|
|
||||||
|
PathValue []string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeModuleDestroyFlat) Name() string {
|
||||||
|
return fmt.Sprintf(
|
||||||
|
"%s.%s", modulePrefixStr(n.PathValue), n.graphNodeModuleDestroy.Name())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeModuleDestroyFlat) Path() []string {
|
||||||
|
return n.PathValue
|
||||||
|
}
|
||||||
|
|
||||||
type graphNodeModuleInput struct {
|
type graphNodeModuleInput struct {
|
||||||
Variables map[string]string
|
Variables map[string]string
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue