Redshift cluster does not require SSL connections Affecting Redshift service in AWS


Severity

0.0
high
0
10
Severity Framework
Snyk CCSS
Rule category
Keys and Secrets/ Encryption in Transit

Is your environment 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 applications
Frameworks
CIS-ControlsCSA-CCMGDPRHIPAAISO-27001NIST-800-53PCI-DSSSOC-2
  • Snyk IDSNYK-CC-00236
  • creditSnyk Research Team

Description

Data transferred between a client and Redshift is vulnerable to hijacking and information disclosure.

How to fix?

Set parameter.name to require_ssl and parameter.value to true.

Example Configuration

resource "aws_redshift_parameter_group" "allowed" {
  name   = "parameter-group-test-terraform"
  family = "redshift-1.0"

  parameter {
    name  = "require_ssl"
    value = "true"
  }
}