]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - 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
index 2897eb546adfb3c77d7e805f2cb4465a5d58c943..768590fb053b15cade93e30c763c35c1f497e835 100644 (file)
@@ -1,7 +1,11 @@
 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() []string
+       Path() addrs.ModuleInstance
 }