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

     1  
     2  Enable in transit encryption
     3  
     4  ```yaml---
     5  Resources:
     6    GoodExample:
     7      Type: AWS::Kinesis::Stream
     8      Properties:
     9        Name: GoodExample
    10        RetentionPeriodHours: 168
    11        ShardCount: 3
    12        StreamEncryption:
    13          EncryptionType: KMS
    14          KeyId: alis/key
    15        Tags:
    16          -
    17            Key: Environment 
    18            Value: Production
    19  
    20  ```
    21  
    22