github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/redshift/AVD-AWS-0084/CloudFormation.md (about)

     1  
     2  Enable encryption using CMK
     3  
     4  ```yaml---
     5  AWSTemplateFormatVersion: 2010-09-09
     6  Description: Bad example of redshift cluster
     7  Resources:
     8    Queue:
     9      Type: AWS::Redshift::Cluster
    10      Properties:
    11        Encrypted: true
    12        KmsKeyId: "something"
    13  
    14  
    15  ```
    16  
    17