Documentation ¶
Index ¶
- type CmdHandler
- func (h *CmdHandler) ModuleCallersHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- func (h *CmdHandler) ModuleCallsHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- func (h *CmdHandler) ModuleProvidersHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- func (h *CmdHandler) TerraformInitHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- func (h *CmdHandler) TerraformValidateHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- func (h *CmdHandler) TerraformVersionRequestHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
- type ModuleType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CmdHandler ¶ added in v0.26.0
type CmdHandler struct { StateStore *state.StateStore Logger *log.Logger // TODO? Can features contribute commands, so we don't have to import // the features here? ModulesFeature *fmodules.ModulesFeature RootModulesFeature *frootmodules.RootModulesFeature }
func (*CmdHandler) ModuleCallersHandler ¶ added in v0.26.0
func (h *CmdHandler) ModuleCallersHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
func (*CmdHandler) ModuleCallsHandler ¶ added in v0.26.0
func (h *CmdHandler) ModuleCallsHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
func (*CmdHandler) ModuleProvidersHandler ¶ added in v0.26.0
func (h *CmdHandler) ModuleProvidersHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
func (*CmdHandler) TerraformInitHandler ¶ added in v0.26.0
func (h *CmdHandler) TerraformInitHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
func (*CmdHandler) TerraformValidateHandler ¶ added in v0.26.0
func (h *CmdHandler) TerraformValidateHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
func (*CmdHandler) TerraformVersionRequestHandler ¶ added in v0.29.0
func (h *CmdHandler) TerraformVersionRequestHandler(ctx context.Context, args cmd.CommandArgs) (interface{}, error)
type ModuleType ¶ added in v0.29.0
type ModuleType string
const ( UNKNOWN ModuleType = "unknown" TFREGISTRY ModuleType = "tfregistry" LOCAL ModuleType = "local" GITHUB ModuleType = "github" GIT ModuleType = "git" )
Click to show internal directories.
Click to hide internal directories.