Giter Site home page Giter Site logo

Comments (3)

mnapoli avatar mnapoli commented on September 2, 2024

Hi, thanks for opening this issue!

Could you explain in a bit more detail what you have in mind? Would it be a construct to handle SNS notifications, or to send them?

If you have a proposal of YAML syntax feel free.

from lift.

carvajalluis avatar carvajalluis commented on September 2, 2024

Hello @mnapoli ,
definitely send is my current intent. I'm a bit rough yet on serverless and it might not be complete or production ready but this is what I have been creating.

resources:
  Resources:
    AlarmTopic:
      Type: AWS::SNS::Topic
      Properties:
        DisplayName: "User alerts"
        TopicName: user-alert-${self:provider.stage}
        Subscription:
          - Endpoint: [email protected]
            Protocol: email
    AlarmTopicPolicy:
      Type: AWS::SNS::TopicPolicy
      DependsOn:
        - AlarmTopic
      Properties:
        PolicyDocument:
          Version: "2012-10-17"
          Statement:
            - Sid: AllowServerlessFrameworkEnterpriseToPublish
              Effect: Allow
              Resource: !Ref AlarmTopic
              Principal:
                Service: lambda.amazonaws.com
              Action: "sns:Publish"
        Topics:
          - Ref: AlarmTopic
  Outputs:
    AlarmSnsTopicArn:
      Description: ARN for the SNS Alarm Topic
      Value: !Ref AlarmTopic

some thing along those lines where I can create a construct and give it publish access to any particular construct worker. i could have some misconception yet so please correct me if I'm wrong.

from lift.

mnapoli avatar mnapoli commented on September 2, 2024

OK I see, thanks!

The end goal here is to add email alarms, right? I'm wondering if this isn't something we should solve directly (the high level problem). I'd be interested to know how you use the alarm? (what triggers it)

from lift.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.