-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.checkov.yml
More file actions
57 lines (48 loc) · 1.58 KB
/
.checkov.yml
File metadata and controls
57 lines (48 loc) · 1.58 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
# Checkov configuration file
# This file configures which frameworks to use for security scanning
# Specify the frameworks to include - make sure Terraform and Bicep are first
framework:
# Primary IaC frameworks we need to scan
- terraform
- bicep
# Core IaC frameworks
- arm
- kubernetes
- helm
- kustomize
- dockerfile
- ansible
# CI/CD pipelines
- github_actions
- azure_pipelines
# API and service configuration
- openapi
- serverless
# Security-focused scanners
- secrets
# Additional formats
- json
- yaml
# # Output format configuration
output:
- junitxml
- json
# Specific checks to skip (commented out by default - uncomment and add checks as needed)
# skip-check:
# # Example Azure security checks that might be skipped in dev environments
# - CKV_AZURE_2 # Ensure that all Azure Storage accounts disallow public access
# - CKV_AZURE_35 # Ensure default network access rule for Storage Accounts is set to deny
# - CKV_AZURE_43 # Ensure the Storage Account default network access rule is set to deny
#
# # Example Kubernetes checks that might be skipped in dev environments
# - CKV_K8S_38 # Ensure containers mount a root filesystem as read-only
# - CKV_K8S_40 # Containers should not run as the root user
#
# # Example Docker checks that might be skipped during development
# - CKV_DOCKER_2 # Ensure that HEALTHCHECK instructions have been added to container images
#
# # Example general security checks
# - CKV_SECRET_6 # Base64 High Entropy String
# Enable evaluation of variables
evaluate-variables: true