github.com/hashicorp/terraform-plugin-sdk@v1.17.2/terraform/graph_interface_subgraph.go (about)

     1  package terraform
     2  
     3  import (
     4  	"github.com/hashicorp/terraform-plugin-sdk/internal/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  }