-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy path.checkov.yml
More file actions
29 lines (22 loc) · 831 Bytes
/
Copy path.checkov.yml
File metadata and controls
29 lines (22 loc) · 831 Bytes
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
# Checkov configuration file
# This file configures security scanning behavior
# Skip paths that shouldn't be scanned for security issues
skip-path:
- test/ # Test fixtures and test code
- examples/ # Example configurations (may have intentional simplifications)
# Skip specific checks that aren't applicable to this project
skip-check:
# Test-specific skips (if needed)
- CKV_AWS_119 # Ensure DynamoDB Tables are encrypted (not required for test fixtures)
# Framework to scan
framework:
- terraform
- secrets
# Output configuration
output: cli
# Severity threshold
soft-fail: true # Don't fail the build on security issues
# Directory to scan (default is current directory)
directory: .
# Include severity information
include-all-checkov-policies: true