Skip to content

Commit

Permalink
found config stack initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerebrovinny committed Nov 22, 2024
1 parent a27c4d5 commit 78ce613
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions internal/exec/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,15 @@ func ProcessStacks(
var foundStacks []string
var foundConfigAndStacksInfo schema.ConfigAndStacksInfo

foundConfigAndStacksInfo.ComponentSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentVarsSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentSettingsSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentOverridesSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentProvidersSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentEnvSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentBackendSection = make(map[string]any)
foundConfigAndStacksInfo.ComponentMetadataSection = make(map[string]any)

for stackName := range stacksMap {
// Check if we've found the component in the stack
err = ProcessComponentConfig(
Expand Down

0 comments on commit 78ce613

Please sign in to comment.