terraform.go 330 B

1234567891011121314151617
  1. package tools
  2. func Terraform() *terraform {
  3. return &terraform{}
  4. }
  5. type (
  6. terraform struct{}
  7. )
  8. func (t *terraform) Init() {}
  9. func (t *terraform) Plan() {}
  10. func (t *terraform) Apply() {}
  11. func (t *terraform) Show() {}
  12. func (t *terraform) Outputs() {}
  13. func (t *terraform) State() {}
  14. func (t *terraform) Destroy() {}