From 6841cfe3b26484ea414353f6d4f003b5eb204972 Mon Sep 17 00:00:00 2001 From: Thomas Coudert Date: Wed, 19 Feb 2025 17:22:32 +0100 Subject: [PATCH] fix(README): Fix typo on SCANNER_TRIVY_SECURITY_CHECKS env var default value --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40ac71d..db18c72 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Configuration of the adapter is done via environment variables at startup. | `SCANNER_TRIVY_REPORTS_DIR` | `/home/scanner/.cache/reports` | Trivy reports directory | | `SCANNER_TRIVY_DEBUG_MODE` | `false` | The flag to enable or disable Trivy debug mode | | `SCANNER_TRIVY_VULN_TYPE` | `os,library` | Comma-separated list of vulnerability types. Possible values are `os` and `library`. | -| `SCANNER_TRIVY_SECURITY_CHECKS` | `vuln,config,secret` | comma-separated list of what security issues to detect. Possible values are `vuln`, `config` and `secret`. Defaults to `vuln`. | +| `SCANNER_TRIVY_SECURITY_CHECKS` | `vuln` | comma-separated list of what security issues to detect. Possible values are `vuln`, `config` and `secret`. Defaults to `vuln`. | | `SCANNER_TRIVY_SEVERITY` | `UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL` | Comma-separated list of vulnerabilities severities to be displayed | | `SCANNER_TRIVY_IGNORE_UNFIXED` | `false` | The flag to display only fixed vulnerabilities | | `SCANNER_TRIVY_IGNORE_POLICY` | `` | The path for the Trivy ignore policy OPA Rego file |