We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe5eb4 commit e77b637Copy full SHA for e77b637
terraform/pipelines/modules/codepipeline/buildspecs/ossdepscan.yml
@@ -15,7 +15,7 @@ phases:
15
build:
16
commands:
17
- echo "Scanning dependencies for vulnerabilities with Trivy..."
18
- - trivy fs --scanners vuln --severity HIGH,CRITICAL .
+ - ./bin/trivy fs --scanners vuln --severity HIGH,CRITICAL .
19
post_build:
20
21
- echo "Dependency scanning completed."
terraform/pipelines/modules/codepipeline/main.tf
@@ -148,6 +148,13 @@ resource "aws_iam_policy" "codebuild_policy" {
148
"${var.s3_bucket_arn}/*"
149
]
150
},
151
+ {
152
+ Effect = "Allow"
153
+ Action = [
154
+ "codebuild:CreateReportGroup"
155
+ ]
156
+ Resource = "*"
157
+ },
158
{
159
Effect = "Allow"
160
Action = [
0 commit comments