github.com/ns1/terraform@v0.7.10-0.20161109153551-8949419bef40/terraform/graph_config_node_type.go (about)

     1  package terraform
     2  
     3  //go:generate stringer -type=GraphNodeConfigType graph_config_node_type.go
     4  
     5  // GraphNodeConfigType is an enum for the type of thing that a graph
     6  // node represents from the configuration.
     7  type GraphNodeConfigType int
     8  
     9  const (
    10  	GraphNodeConfigTypeInvalid  GraphNodeConfigType = 0
    11  	GraphNodeConfigTypeResource GraphNodeConfigType = iota
    12  	GraphNodeConfigTypeProvider
    13  	GraphNodeConfigTypeModule
    14  	GraphNodeConfigTypeOutput
    15  	GraphNodeConfigTypeVariable
    16  )