forked from Checkmarx/kics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trivy.fs.yaml
39 lines (39 loc) · 848 Bytes
/
trivy.fs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# tightening the previous options:
#
# trivy fs --format json --exit-code 1 --ignore-unfixed --vuln-type os,library --severity CRITICAL,HIGH,MEDIUM --output ./trivy-results.json .
#
# to stop ignoting unfixed and broaden security scope to all severities:
#
# exit:
# code: 1
# format: json
# output: /trivy-results.json
# report: all
# vex:
# trivy.vex
# ignorefile: .trivyignore
# ignore-policy: './trivy-ignore.rego'
# severity:
# - UNKNOWN
# - LOW
# - MEDIUM
# - HIGH
# - CRITICAL
# scan:
# # Same as '--scanners'
# # Default depends on subcommand
# scanners:
# - vuln
# - misconfig
# - secret
# # - license
# vulnerability:
# # Same as '--vuln-type'
# # Default is 'os,library'
# type:
# - os
# - library
#
# # Same as '--ignore-unfixed'
# # Default is false
# ignore-unfixed: false