Created
June 22, 2023 14:26
-
-
Save coingraham/60b9cb43215f592ec0bd6040b42d7bd2 to your computer and use it in GitHub Desktop.
Cloudformation SNS Topic with AWS Managed Encryption Key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
Resources: | |
MySNSTopic: | |
Type: "AWS::SNS::Topic" | |
Properties: | |
DisplayName: "KMSTopic" | |
KmsMasterKeyId: "alias/aws/sns" | |
Subscription: | |
- Endpoint: "[email protected]" | |
Protocol: "email" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment