Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Blob ¶
type Blob interface { Get(project string, workspace string) (io.ReadCloser, error) Put(project string, workspace string, source io.ReadSeeker) error }
func NewBlobLocal ¶
type BlobLocal ¶
type BlobLocal struct {
// contains filtered or unexported fields
}
type Terraform ¶
type Terraform interface { Plan(option TerraformOption, workspace string, vars []string, varfiles []string, destroy bool) ([]byte, error) Apply(option TerraformOption, destroy bool) error }
func NewTerraform ¶
func NewTerraform() Terraform
type TerraformImpl ¶
type TerraformImpl struct { }
func (*TerraformImpl) Apply ¶
func (t *TerraformImpl) Apply(option TerraformOption, destroy bool) error
func (*TerraformImpl) Plan ¶
func (t *TerraformImpl) Plan(option TerraformOption, workspace string, vars []string, varfiles []string, destroy bool) ([]byte, error)
type TerraformMock ¶
func NewTerraformMock ¶
func NewTerraformMock() *TerraformMock
func (*TerraformMock) Apply ¶
func (m *TerraformMock) Apply(option TerraformOption, destroy bool) error
func (*TerraformMock) Plan ¶
func (m *TerraformMock) Plan(option TerraformOption, workspace string, vars []string, varfiles []string, destroy bool) ([]byte, error)
type TerraformOption ¶
type TerraformOption struct {
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.