Skip to content

AWS Redshift Cluster not encrypted using Customer Managed Key

Description

Encrypting your data and resources with KMS helps protect your data from unauthorized access or tampering. By encrypting your data, you can ensure that only authorized users can access and decrypt the data, and that the data is protected while in storage or in transit. Such action can help protect against external threats such as hackers or malware, as well as internal threats such as accidental or unauthorized access.

Code Example

go
resource "aws_redshift_cluster" "test" {
  ...
+ kms_key_id         = "someKey"
}

Remediation

Terraform

  • Resource: aws_redshift_cluster
  • Arguments: kms_key_id

Rule Details

FieldValue
IDIAC-0192
SeverityINFO
IaC TypeTerraform
FrameworksTerraform, TerraformPlan
Checkov IDCKV_AWS_142

References