Unencrypted SNS topic.
Topics should be encrypted to protect their contents.
Impact
Recommended Actions
Follow the appropriate remediation steps below to resolve the issue.
    
    
        
    
        
    
    
    
        
        
            Turn on SNS Topic encryption
| 1
2
3
4
5
6
 | Resources:
  GoodTopic:
    Type: AWS::SNS::Topic
    Properties:
      KmsMasterKeyId: some-key
      TopicName: blah
 | 
 
 
        
        
            Turn on SNS Topic encryption
| 1
2
3
 | resource "aws_sns_topic" "good_example" {
  kms_master_key_id = "/blah"
}
 | 
 
| 1
2
3
 | resource "aws_sns_topic" "good_example" {
  kms_master_key_id = "alias/aws/sns"
}
 | 
 
 
        
     
 
Links