]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/hashicorp/terraform/terraform/graph_interface_subgraph.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / terraform / graph_interface_subgraph.go
CommitLineData
bae9f6d2
JC
1package terraform
2
107c1cdb
ND
3import (
4 "github.com/hashicorp/terraform/addrs"
5)
6
bae9f6d2
JC
7// GraphNodeSubPath says that a node is part of a graph with a
8// different path, and the context should be adjusted accordingly.
9type GraphNodeSubPath interface {
107c1cdb 10 Path() addrs.ModuleInstance
bae9f6d2 11}