mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
35 lines (34 loc) • 1.06 kB
YAML
rules:
- id: missing-athena-workgroup-encryption
patterns:
- pattern: resource "aws_athena_workgroup" $ANYTHING {...}
- pattern-not-inside: |
resource "aws_athena_workgroup" $ANYTHING {
...
encryption_configuration {...}
...
}
message: >-
The AWS Athena Workgroup is unencrypted. Encryption protects query results in your workgroup.
To enable, add: `encryption_configuration { encryption_option = "SSE_KMS" kms_key_arn =
aws_kms_key.example.arn }` within `result_configuration { }` in your resource block,
where `encryption_option` is your chosen encryption method and `kms_key_arn`
is your KMS key ARN.
languages: [hcl]
severity: WARNING
metadata:
technology:
- aws
- terraform
category: security
owasp:
- A03:2017 - Sensitive Data Exposure
cwe:
- 'CWE-320: CWE CATEGORY: Key Management Errors'
references:
- https://owasp.org/Top10/A02_2021-Cryptographic_Failures
subcategory:
- audit
likelihood: LOW
impact: LOW
confidence: LOW