github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/aws/sqs/AVD-AWS-0135/CloudFormation.md (about)

     1  
     2  Encrypt SQS Queue with a customer-managed key
     3  
     4  ```yaml---
     5  AWSTemplateFormatVersion: 2010-09-09
     6  Description: Good example of queue
     7  Resources:
     8    Queue:
     9      Type: AWS::SQS::Queue
    10      Properties:
    11        KmsMasterKeyId: some-key
    12        QueueName: my-queue
    13  
    14  
    15  ```
    16  
    17