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

     1  
     2  Use customer managed keys
     3  
     4  ```yaml---
     5  AWSTemplateFormatVersion: 2010-09-09
     6  Description: Good example of ingress rule
     7  Resources:
     8    Secret:
     9      Type: AWS::SecretsManager::Secret
    10      Properties:
    11        Description: "secret"
    12        KmsKeyId: "my-key-id"
    13        Name: "blah"
    14        SecretString: "don't tell anyone"
    15  
    16  ```
    17  
    18