diff --git a/config/v2/config.go b/config/v2/config.go index 1df61bde6..6f1f57711 100644 --- a/config/v2/config.go +++ b/config/v2/config.go @@ -230,16 +230,15 @@ type Env struct { type Component struct { Common `yaml:",inline"` - EKS *EKSConfig `yaml:"eks,omitempty"` - Kind *ComponentKind `yaml:"kind,omitempty"` - ModuleSource *string `yaml:"module_source,omitempty"` - ModuleName *string `yaml:"module_name,omitempty"` - ModuleForEach *string `yaml:"module_for_each,omitempty"` - ModuleDependsOn []string `yaml:"module_depends_on,omitempty"` - ProvidersMap map[string]string `yaml:"module_providers,omitempty"` - Variables []string `yaml:"variables,omitempty"` - Outputs []string `yaml:"outputs,omitempty"` - Modules []ComponentModule `yaml:"modules,omitempty"` + EKS *EKSConfig `yaml:"eks,omitempty"` + Kind *ComponentKind `yaml:"kind,omitempty"` + ModuleSource *string `yaml:"module_source,omitempty"` + ModuleName *string `yaml:"module_name,omitempty"` + ModuleForEach *string `yaml:"module_for_each,omitempty"` + ProvidersMap map[string]string `yaml:"module_providers,omitempty"` + Variables []string `yaml:"variables,omitempty"` + Outputs []string `yaml:"outputs,omitempty"` + Modules []ComponentModule `yaml:"modules,omitempty"` } type ComponentModule struct {