Severity Framework
Snyk CCSS
Rule category
General / Data
Is your enviroment affected by this misconfiguration?
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsFrameworks
CIS-Controls
CSA-CCM
GDPR
HIPAA
ISO-27001
NIST-800-53
PCI-DSS
SOC-2
- Snyk ID SNYK-CC-00430
- credit Snyk Research Team
Description
Unencrypted communication between Redis client and server is vulnerable to eavesdropping and unauthorized modification.
How to fix?
Set transit_encryption_mode
to SERVER_AUTHENTICATION
.
Example Configuration.
resource "google_redis_instance" "allowed" {
name = "memory-cache"
memory_size_gb = 1
transit_encryption_mode = "SERVER_AUTHENTICATION"
}