Documentation ¶
Index ¶
- Constants
- func WriteConfig(path string, config *Config) error
- type Config
- type Module
- type Output
- type Terraform
- func (t *Terraform) Apply(dir string) error
- func (t *Terraform) Destroy(dir string, force bool) error
- func (t *Terraform) Get(dir string) error
- func (t *Terraform) Init(dir string) error
- func (t *Terraform) Output(dir, key string) (string, error)
- func (t *Terraform) Plan(dir string) error
- func (t *Terraform) Validate(dir string) error
- type Variable
Constants ¶
View Source
const REQUIRED_TERRAFORM_VERSION = "0.9.4"
Variables ¶
This section is empty.
Functions ¶
func WriteConfig ¶
Types ¶
type Config ¶
type Config struct { Variables map[string]Variable `json:"variable,omitempty"` Modules map[string]Module `json:"module,omitempty"` Outputs map[string]Output `json:"output,omitempty"` }
func LoadConfig ¶
Click to show internal directories.
Click to hide internal directories.