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 applicationsThe TLS (Transport Layer Security) protocol secures transmission of data over the internet using standard encryption technology. Versions prior to TLS 1.2 are deprecated and usage may pose security risks.
Set the appropriate SSL policy attribute for your load balancer to the latest AWS predefined security policy.
aws_load_balancer_policy (predefined), set policy_attribute.name to Reference-Security-Policy and policy_attribute.value to a valid security policy.aws_load_balancer_policy (custom), set policy_attribute.name to a valid security policy and policy_attribute.value to true.List of invalid policies:
Example configuration:
# aws_elb, predefined policy example
resource "aws_load_balancer_policy" "elb_policy" {
load_balancer_name = "${aws_elb.elb.name}"
policy_name = "elb-ssl"
policy_type_name = "SSLNegotiationPolicyType"
policy_attribute {
name = "Reference-Security-Policy"
value = "ELBSecurityPolicy-TLS-1-2-2017-01"
}
}
# aws_elb, custom policy example
resource "aws_load_balancer_policy" "elb_policy" {
load_balancer_name = "${aws_elb.elb.name}"
policy_name = "elb-ssl"
policy_type_name = "SSLNegotiationPolicyType"
policy_attribute {
name = "ECDHE-ECDSA-AES128-GCM-SHA256"
value = "true"
}
policy_attribute {
name = "Protocol-TLSv1.2"
value = "true"
}
}
Set Properties.SslPolicy attribute to latest AWS predefined security policy.