CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
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 applicationsPublicly accessible Redshift clusters allow any AWS user or anonymous user access to the data in the database.
Set the publicly_accessible
attribute to false
.
resource "aws_redshift_cluster" "valid" {
cluster_identifier = "cluster-public-test-valid"
master_username = "webadmin"
master_password = "SecretPassw0rd"
node_type = "dc2.large"
cluster_subnet_group_name = "${aws_redshift_subnet_group.redshiftvpc.id}"
publicly_accessible = false
skip_final_snapshot = true
}