Versions in this module Expand all Collapse all v0 v0.15.1 Jan 24, 2026 Changes in this version + type Config struct + Context *ContextConfig + Project string + Region string + Stacks []*StackConfig + Tags map[string]string + type ConfigProvider interface + GetStack func(stackName, context string) (*StackConfig, error) + ListContexts func() ([]string, error) + ListStacks func(context string) ([]string, error) + LoadConfig func(ctx context.Context, context string) (*Config, error) + Validate func() error + type ContextConfig struct + Account string + Name string + Region string + Tags map[string]string + type MockConfigProvider struct + func (m *MockConfigProvider) GetStack(stackName, context string) (*StackConfig, error) + func (m *MockConfigProvider) ListContexts() ([]string, error) + func (m *MockConfigProvider) ListStacks(context string) ([]string, error) + func (m *MockConfigProvider) LoadConfig(ctx context.Context, context string) (*Config, error) + func (m *MockConfigProvider) Validate() error + type ParameterValue struct + ListItems []*ParameterValue + ResolutionConfig map[string]string + ResolutionType string + type StackConfig struct + Capabilities []string + Dependencies []string + Name string + Parameters map[string]*ParameterValue + Tags map[string]string + Template string