mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
terraform: new output transform that isn't used yet
This commit is contained in:
parent
7dd4813730
commit
e9e8304e95
@ -1,98 +1,19 @@
|
|||||||
package terraform
|
package terraform
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"github.com/hashicorp/terraform/config/module"
|
||||||
|
|
||||||
"github.com/hashicorp/terraform/dag"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// GraphNodeOutput is an interface that nodes that are outputs must
|
// OutputTransformer is a GraphTransformer that adds all the outputs
|
||||||
// implement. The OutputName returned is the name of the output key
|
// in the configuration to the graph.
|
||||||
// that they manage.
|
//
|
||||||
type GraphNodeOutput interface {
|
// This is done for the apply graph builder even if dependent nodes
|
||||||
OutputName() string
|
// aren't changing since there is no downside: the state will be available
|
||||||
|
// even if the dependent items aren't changing.
|
||||||
|
type OutputTransformer struct {
|
||||||
|
Module *module.Tree
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddOutputOrphanTransformer is a transformer that adds output orphans
|
func (t *OutputTransformer) Transform(g *Graph) error {
|
||||||
// to the graph. Output orphans are outputs that are no longer in the
|
|
||||||
// configuration and therefore need to be removed from the state.
|
|
||||||
type AddOutputOrphanTransformer struct {
|
|
||||||
State *State
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *AddOutputOrphanTransformer) Transform(g *Graph) error {
|
|
||||||
// Get the state for this module. If we have no state, we have no orphans
|
|
||||||
state := t.State.ModuleByPath(g.Path)
|
|
||||||
if state == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the set of outputs we do have in the graph
|
|
||||||
found := make(map[string]struct{})
|
|
||||||
for _, v := range g.Vertices() {
|
|
||||||
on, ok := v.(GraphNodeOutput)
|
|
||||||
if !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
found[on.OutputName()] = struct{}{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Go over all the outputs. If we don't have a graph node for it,
|
|
||||||
// create it. It doesn't need to depend on anything, since its just
|
|
||||||
// setting it empty.
|
|
||||||
for k, _ := range state.Outputs {
|
|
||||||
if _, ok := found[k]; ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
g.Add(&graphNodeOrphanOutput{OutputName: k})
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type graphNodeOrphanOutput struct {
|
|
||||||
OutputName string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n *graphNodeOrphanOutput) Name() string {
|
|
||||||
return fmt.Sprintf("output.%s (orphan)", n.OutputName)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n *graphNodeOrphanOutput) EvalTree() EvalNode {
|
|
||||||
return &EvalOpFilter{
|
|
||||||
Ops: []walkOperation{walkApply, walkDestroy, walkRefresh},
|
|
||||||
Node: &EvalDeleteOutput{
|
|
||||||
Name: n.OutputName,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// GraphNodeFlattenable impl.
|
|
||||||
func (n *graphNodeOrphanOutput) Flatten(p []string) (dag.Vertex, error) {
|
|
||||||
return &graphNodeOrphanOutputFlat{
|
|
||||||
graphNodeOrphanOutput: n,
|
|
||||||
PathValue: p,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type graphNodeOrphanOutputFlat struct {
|
|
||||||
*graphNodeOrphanOutput
|
|
||||||
|
|
||||||
PathValue []string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n *graphNodeOrphanOutputFlat) Name() string {
|
|
||||||
return fmt.Sprintf(
|
|
||||||
"%s.%s", modulePrefixStr(n.PathValue), n.graphNodeOrphanOutput.Name())
|
|
||||||
}
|
|
||||||
|
|
||||||
func (n *graphNodeOrphanOutputFlat) EvalTree() EvalNode {
|
|
||||||
return &EvalOpFilter{
|
|
||||||
Ops: []walkOperation{walkApply, walkDestroy, walkRefresh},
|
|
||||||
Node: &EvalDeleteOutput{
|
|
||||||
Name: n.OutputName,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
98
terraform/transform_output_orphan.go
Normal file
98
terraform/transform_output_orphan.go
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
package terraform
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/hashicorp/terraform/dag"
|
||||||
|
)
|
||||||
|
|
||||||
|
// GraphNodeOutput is an interface that nodes that are outputs must
|
||||||
|
// implement. The OutputName returned is the name of the output key
|
||||||
|
// that they manage.
|
||||||
|
type GraphNodeOutput interface {
|
||||||
|
OutputName() string
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddOutputOrphanTransformer is a transformer that adds output orphans
|
||||||
|
// to the graph. Output orphans are outputs that are no longer in the
|
||||||
|
// configuration and therefore need to be removed from the state.
|
||||||
|
type AddOutputOrphanTransformer struct {
|
||||||
|
State *State
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *AddOutputOrphanTransformer) Transform(g *Graph) error {
|
||||||
|
// Get the state for this module. If we have no state, we have no orphans
|
||||||
|
state := t.State.ModuleByPath(g.Path)
|
||||||
|
if state == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the set of outputs we do have in the graph
|
||||||
|
found := make(map[string]struct{})
|
||||||
|
for _, v := range g.Vertices() {
|
||||||
|
on, ok := v.(GraphNodeOutput)
|
||||||
|
if !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
found[on.OutputName()] = struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Go over all the outputs. If we don't have a graph node for it,
|
||||||
|
// create it. It doesn't need to depend on anything, since its just
|
||||||
|
// setting it empty.
|
||||||
|
for k, _ := range state.Outputs {
|
||||||
|
if _, ok := found[k]; ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
g.Add(&graphNodeOrphanOutput{OutputName: k})
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type graphNodeOrphanOutput struct {
|
||||||
|
OutputName string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeOrphanOutput) Name() string {
|
||||||
|
return fmt.Sprintf("output.%s (orphan)", n.OutputName)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeOrphanOutput) EvalTree() EvalNode {
|
||||||
|
return &EvalOpFilter{
|
||||||
|
Ops: []walkOperation{walkApply, walkDestroy, walkRefresh},
|
||||||
|
Node: &EvalDeleteOutput{
|
||||||
|
Name: n.OutputName,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GraphNodeFlattenable impl.
|
||||||
|
func (n *graphNodeOrphanOutput) Flatten(p []string) (dag.Vertex, error) {
|
||||||
|
return &graphNodeOrphanOutputFlat{
|
||||||
|
graphNodeOrphanOutput: n,
|
||||||
|
PathValue: p,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type graphNodeOrphanOutputFlat struct {
|
||||||
|
*graphNodeOrphanOutput
|
||||||
|
|
||||||
|
PathValue []string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeOrphanOutputFlat) Name() string {
|
||||||
|
return fmt.Sprintf(
|
||||||
|
"%s.%s", modulePrefixStr(n.PathValue), n.graphNodeOrphanOutput.Name())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (n *graphNodeOrphanOutputFlat) EvalTree() EvalNode {
|
||||||
|
return &EvalOpFilter{
|
||||||
|
Ops: []walkOperation{walkApply, walkDestroy, walkRefresh},
|
||||||
|
Node: &EvalDeleteOutput{
|
||||||
|
Name: n.OutputName,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user