mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
20 lines
340 B
Go
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
|
|
}
|