Unencrypted RDS global clusters
Description
Encrypting your RDS global clusters helps protect your data from unauthorized access or tampering. That way, you can ensure that only authorized users can access and modify the contents of your repositories. Such action can help protect against external threats such as hackers or malware, as well as internal threats such as accidental or unauthorized access.
Fix - Buildtime
Terraform
- Resource: aws_rds_global_cluster
- Argument: storage_encrypted
resource "aws_rds_global_cluster" "example" {
...
+ storage_encrypted = true
}