summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/terraform/graph_interface_subgraph.go
blob: 2897eb546adfb3c77d7e805f2cb4465a5d58c943 (plain)
1
2
3
4
5
6
7
package terraform

// 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() []string
}