Skip to content

Instantly share code, notes, and snippets.

@coingraham
Created June 22, 2023 14:26
Show Gist options
  • Save coingraham/60b9cb43215f592ec0bd6040b42d7bd2 to your computer and use it in GitHub Desktop.
Save coingraham/60b9cb43215f592ec0bd6040b42d7bd2 to your computer and use it in GitHub Desktop.
Cloudformation SNS Topic with AWS Managed Encryption Key
AWSTemplateFormatVersion: '2010-09-09'
Resources:
MySNSTopic:
Type: "AWS::SNS::Topic"
Properties:
DisplayName: "KMSTopic"
KmsMasterKeyId: "alias/aws/sns"
Subscription:
- Endpoint: "myemail@domain.com"
Protocol: "email"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment