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 applicationsData events provide visibility into the resource operations performed on or within a resource, including S3 object-level API activity. By default, trails do not log data events. Note that data events are often high-volume activities.
Set the event_selector.data_resource.type
attribute to AWS::S3::Object
, and event_selector.data_resource.values
to arn:aws:s3:::<bucket name>/
.
resource "aws_cloudtrail" "valid_trail" {
name = "valid_trail"
s3_bucket_name = "${aws_s3_bucket.ct_bucket.id}"
event_selector {
data_resource {
type = "AWS::S3::Object"
values = ["${aws_s3_bucket.important_bucket.arn}/"]
}
}
}