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 applicationsIf secret keys have been hardcoded in a user_data script, anyone with access to version-control software or a launched instance will be able to obtain the secrets and gain unauthorized access to resources.
Remove secret value from the user_data
attribute.
resource "aws_instance" "allowed_3" {
ami = "ami-005e54dee72ccabcd"
instance_type = "t2.micro"
user_data = file("script.sh")
}
Remove secret value from Properties.UserData
attribute.