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 applicationsFile validation should be enabled on all CloudTrail logs because it provides additional integrity checking of the log data.
Set the aws_cloudtrail
enable_log_file_validation
field to true
.
resource "aws_cloudtrail" "example" {
enable_log_file_validation = true
# other required fields here
}
Enable file validation on all CloudTrail logs because it provides additional integrity checking of the log data.
Set the AWS::CloudTrail::Trail
EnableLogFileValidation
field to true
.
JSON example configuration:
{
"Type": "AWS::CloudTrail::Trail",
"Properties": {
"EnableLogFileValidation": true
}
# other required fields here
}
YAML example configuration:
Type: AWS::CloudTrail::Trail
Properties:
EnableLogFileValidation: true
# other required fields here