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 applicationsEC2 instances with public IPs are potentially reachable over the internet. If NACLs and security group rules are relaxed your instances may be vulnerable to attack.
Set the associate_public_ip_address
attribute to false
.
resource "aws_instance" "instance1" {
ami = "ami-0323c3dd2da7fabcd"
instance_type = "t2.micro"
subnet_id = "${aws_subnet.subnet1.id}"
associate_public_ip_address = false
}
resource "aws_launch_configuration" "private" {
name = "web_config"
image_id = "ami-abcd1234"
instance_type = "t2.micro"
associate_public_ip_address = false
}
resource "aws_launch_template" "private" {
name = "example"
network_interfaces {
associate_public_ip_address = false
}
}