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 applicationsCloudWatch log groups are encrypted by default. However, utilizing customer managed KMS keys gives you more control over key rotation and provides auditing visibility into key usage.
Configure the aws_cloudwatch_log_group
kms_key_id
field with a KMS key ARN specified for encrypting log data.
Example configuration:
resource "aws_cloudwatch_log_group" "example" {
kms_key_id = "${aws_kms_key.example.arn}"
# other required fields here
}
Set Properties.KmsKeyId
attribute with customer managed key id.