terraform/terraform/graph_interface_subgraph.go

12 lines
266 B
Go

package terraform
import (
"github.com/hashicorp/terraform/addrs"
)
// GraphNodeSubPath says that a node is part of a graph with a
// different path, and the context should be adjusted accordingly.
type GraphNodeSubPath interface {
Path() addrs.ModuleInstance
}