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 applicationsShould someone gain unauthorized access to the data, they would be able to read the contents.
Ensure that the kms_master_key_id
attribute is set to a KMS key's ARN.
resource "aws_sns_topic" "example" {
kms_master_key_id = aws_kms_key.sns_topic_key.arn
# other required attributes
}
resource "aws_kms_key" "sns_topic_key" {
description = "key for SNS topics"
}
Ensure that the KmsMasterKeyId
property is set to a KMS key's ARN.
Type: AWS::SNS::Topic
Properties:
KmsMasterKeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
# other required properties