terraform-provider-google/vendor/github.com/hashicorp/terraform/terraform/transform_variable.go
Riley Karson dbf9188792
Vendor 0.12 SDK (#3432)
```bash
GO111MODULE=on go get github.com/hashicorp/terraform@pluginsdk-v0.12-early7
GO111MODULE=on go mod vendor
GO111MODULE=on go mod tidy
```
2019-04-15 13:39:47 -07:00

41 lines
937 B
Go

package terraform
import (
"github.com/hashicorp/terraform/addrs"
"github.com/hashicorp/terraform/configs"
)
// RootVariableTransformer is a GraphTransformer that adds all the root
// variables to the graph.
//
// Root variables are currently no-ops but they must be added to the
// graph since downstream things that depend on them must be able to
// reach them.
type RootVariableTransformer struct {
Config *configs.Config
}
func (t *RootVariableTransformer) Transform(g *Graph) error {
// We can have no variables if we have no config.
if t.Config == nil {
return nil
}
// We're only considering root module variables here, since child
// module variables are handled by ModuleVariableTransformer.
vars := t.Config.Module.Variables
// Add all variables here
for _, v := range vars {
node := &NodeRootVariable{
Addr: addrs.InputVariable{
Name: v.Name,
},
Config: v,
}
g.Add(node)
}
return nil
}