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 absence of encryption can expose sensitive data stored in the Athena database to potential unauthorized access and can compromise data confidentiality.
Set the encryption_configuration
attribute in aws_athena_database
resource to a valid value.
Example configuration:
resource "aws_athena_database" "allowed" {
name = "athena_db_300"
bucket = aws_s3_bucket.rule-300.id
encryption_configuration {
encryption_option = "CSE_KMS"
kms_key = aws_kms_key.rule-300.arn
}
}