Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@serverless/aws-sns-subscription

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serverless/aws-sns-subscription

Deploy SNS Subscription to AWS in seconds with [Serverless Components](https://github.com/serverless/components).

latest
npmnpm
Version
1.1.0
Version published
Maintainers
5
Created
Source

AWS SNS Subscription

Deploy SNS Subscription to AWS in seconds with Serverless Components.

 

 

1. Install

$ npm install -g @serverless/components

2. Create

Just create a serverless.yml file

$ touch serverless.yml
$ touch .env      # your development AWS api keys
$ touch .env.prod # your production AWS api keys

the .env files are not required if you have the aws keys set globally and you want to use a single stage, but they should look like this.

AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX

3. Configure

# serverless.yml

name: my-topic
stage: dev

AwsSnsSubscriptionLambda:
  component: '@serverless/aws-sns-subscription'
  inputs:
    topic: arn:aws:sns:us-east-1:123456789012:my-topic
    protocol: lambda
    endpoint: arn:aws:lambda:us-east-1:123456789012:function:my-function
AwsSnsSubscriptionEmail:
  component: '@serverless/aws-sns-subscription'
  inputs:
    topic: arn:aws:sns:us-east-1:123456789012:my-topic
    protocol: email
    endpoint: hello@serverless.com

4. Deploy

AwsSnsSubscription (master)$ components

  AwsSnsSubscriptionLambda › outputs:
  arn:  'arn:aws:sns:us-east-1:123456789012:my-topic:95e7dbca-9e45-4e4d-84f3-66f282b89b01'

  AwsSnsSubscriptionEmail › outputs:
  arn:  'arn:aws:sns:us-east-1:123456789012:my-topic:2495cad9-928a-4853-84b1-fcf613df61e7'


  2s › dev › AwsSnsSubscription › done

AwsSnsSubscription (master)$

New to Components?

Checkout the Serverless Components repo for more information.

FAQs

Package last updated on 24 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts