Skip to content

Commit

Permalink
[analyze] Combine access level into permission value (#3144)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcastorina authored Aug 1, 2024
1 parent 8431204 commit f776b48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/analyzer/analyzers/stripe/stripe.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ func secretInfoToAnalyzerResult(info *SecretInfo) *analyzers.AnalyzerResult {
result.Bindings = append(result.Bindings, analyzers.Binding{
Resource: *parentResource,
Permission: analyzers.Permission{
Value: permission.Name,
AccessLevel: *permission.Value,
Value: fmt.Sprintf("%s:%s", permission.Name, *permission.Value),
},
})
}
Expand Down

0 comments on commit f776b48

Please sign in to comment.