terraform/config/config.go

20 lines
340 B
Go
Raw Normal View History

2014-05-23 01:56:28 +02:00
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
}