Redis Not Compliant
- Query id: 254c932d-e3bf-44b2-bc9d-eb5fdb09f8d4
- Query name: Redis Not Compliant
- Platform: Terraform
- Severity: High
- Category: Encryption
- CWE: 665
- URL: Github
Description¶
Check if the redis version is compliant with the necessary AWS PCI DSS requirements
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Positive test num. 1 - tf file
#this is a problematic code where the query should report a result(s)
resource "aws_elasticache_cluster" "positive1" {
cluster_id = "cluster-example"
engine = "redis"
node_type = "cache.m4.large"
num_cache_nodes = 1
engine_version = "2.6.13"
port = 6379
}