| 1234567891011121314151617 |
- package tools
- func Terraform() *terraform {
- return &terraform{}
- }
- type (
- terraform struct{}
- )
- func (t *terraform) Init() {}
- func (t *terraform) Plan() {}
- func (t *terraform) Apply() {}
- func (t *terraform) Show() {}
- func (t *terraform) Outputs() {}
- func (t *terraform) State() {}
- func (t *terraform) Destroy() {}
|