@ez4/aws-topic
v0.43.0
Published
EZ4: Self-managed AWS SNS topics provider
Readme
EZ4: AWS Topic
It provides all the components to manage SNS topics on AWS.
Getting started
Install
npm install @ez4/aws-topic -DPermission
Ensure the user performing deployments has the permissions below:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "TopicManagement",
"Effect": "Allow",
"Action": [
"sns:CreateTopic",
"sns:DeleteTopic",
"sns:Subscribe",
"sns:Unsubscribe",
"sns:TagResource",
"sns:UntagResource"
],
"Resource": ["arn:aws:sns:*:{account-id}:{prefix}-*"]
}
]
}License
MIT License
