opentofu/config/config.go
2014-05-22 16:56:28 -07:00

20 lines
340 B
Go

package config
// Config is the configuration that comes from loading a collection
// of Terraform templates.
type Config struct {
Variables map[string]Variable
Resources []Resource
}
type Resource struct {
Name string
Type string
Config map[string]interface{}
}
type Variable struct {
Default string
Description string
}