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 applicationsRDS security groups should permit access only to necessary ports to prevent access to potentially vulnerable services on other ports.
Set the ingress.cidr_blocks
attribute with a more restrictive CIDR block, for example 192.168.1.0/24
.
Example configuration:
resource "aws_security_group" "ingress-rds-test-group" {
name = "ingress-rds-test-group"
description = "Ingress rds"
ingress {
from_port = 3306
to_port = 3306
protocol = "tcp"
cidr_blocks = ["192.168.1.0/24"]
}
}