terraform: store the configuration on the Terraform struct
This commit is contained in:
parent
d2088463d3
commit
45a8deb388
|
@ -11,8 +11,9 @@ import (
|
||||||
// Terraform from code, and can perform operations such as returning
|
// Terraform from code, and can perform operations such as returning
|
||||||
// all resources, a resource tree, a specific resource, etc.
|
// all resources, a resource tree, a specific resource, etc.
|
||||||
type Terraform struct {
|
type Terraform struct {
|
||||||
config *config.Config
|
config *config.Config
|
||||||
mapping map[*config.Resource]ResourceProvider
|
mapping map[*config.Resource]ResourceProvider
|
||||||
|
variables map[string]string
|
||||||
}
|
}
|
||||||
|
|
||||||
// Config is the configuration that must be given to instantiate
|
// Config is the configuration that must be given to instantiate
|
||||||
|
@ -98,8 +99,9 @@ func New(c *Config) (*Terraform, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return &Terraform{
|
return &Terraform{
|
||||||
config: c.Config,
|
config: c.Config,
|
||||||
mapping: mapping,
|
mapping: mapping,
|
||||||
|
variables: c.Variables,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue