Skip to content

Commit

Permalink
update input package
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdj-snyk committed Jun 28, 2023
1 parent b739309 commit c9036db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/input/arm.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@ func (l *armConfiguration) process() {
resourceSet[id] = struct{}{}
}
exprEvaluator := expressionEvaluator{
evalCtx: arm.NewEvaluationContext(resourceSet, l.variables),
evalCtx: &arm.EvaluationContext{
DiscoveredResourceSet: resourceSet,
Variables: l.variables,
BuiltinFunctions: arm.BuiltinFunctions(),
},
}

// Process resources
Expand Down

0 comments on commit c9036db

Please sign in to comment.