github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/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