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 applicationsExactly one CloudTrail trail should monitor global services. If you have multiple single region trails, AWS recommends configuring your trails so that global service events are delivered in only one of the trails.
Ensure there is exactly one aws_cloudtrail
with include_global_service_events
set to true
.
resource "aws_cloudtrail" "valid_trail" {
name = "valid_trail"
s3_bucket_name = "${aws_s3_bucket.ct_bucket.id}"
include_global_service_events = true
}