Stack evaluation should also visit local values when walking the stack

pull/34797/head
Mutahhir Hayat 2 years ago
parent be317d4d3a
commit 5e12bdf048

@ -52,6 +52,9 @@ func walkStaticObjectsInStackConfig[Output any](
}
// TODO: All of the other static object types
for _, obj := range stackConfig.LocalValues(ctx) {
visit(ctx, walk, obj)
}
for _, obj := range stackConfig.Providers(ctx) {
visit(ctx, walk, obj)

Loading…
Cancel
Save