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 applicationsScope of use of the encryption key cannot be controlled via KMS/IAM policies.
Ensure that the kms_master_key_id
attribute is set a customer managed key id.
Example configuration:
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 a customer managed key id.
Example configuration:
Type: AWS::SNS::Topic
Properties:
KmsMasterKeyId: "arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
# other required properties