mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
46 lines (45 loc) • 1.48 kB
YAML
rules:
- id: eks-insufficient-control-plane-logging
patterns:
- pattern: |
name = ...
- pattern-inside: |
resource "aws_eks_cluster" "..." {
...
}
- pattern-not-inside: |
resource "aws_eks_cluster" "..." {
...
enabled_cluster_log_types = [..., "api", ..., "audit", ...]
...
}
- pattern-not-inside: |
resource "aws_eks_cluster" "..." {
...
enabled_cluster_log_types = [..., "audit", ..., "api", ...]
...
}
languages:
- hcl
message: Missing EKS control plane logging. It is recommended to enable at least
Kubernetes API server component logs ("api") and audit logs ("audit") of
the EKS control plane through the enabled_cluster_log_types attribute.
severity: WARNING
metadata:
references:
- https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/eks_cluster#enabling-control-plane-logging
- https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html
category: security
cwe:
- "CWE-778: Insufficient Logging"
technology:
- terraform
- aws
owasp:
- A10:2017 - Insufficient Logging & Monitoring
- A09:2021 - Security Logging and Monitoring Failures
subcategory:
- audit
likelihood: LOW
impact: LOW
confidence: LOW