]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - 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
1 package terraform
2
3 import (
4 "github.com/hashicorp/terraform/addrs"
5 )
6
7 // GraphNodeSubPath says that a node is part of a graph with a
8 // different path, and the context should be adjusted accordingly.
9 type GraphNodeSubPath interface {
10 Path() addrs.ModuleInstance
11 }