1
votes

I am having issues deploying a lambda with a handler in a nested directory using sam.

I perform the following steps:

  1. package:

    sam package --template template.yaml --output-template-file packaged.yaml --s3-bucket

Creates a packaged.yaml that I use in the next step.

  1. deploy:

    aws cloudformation deploy --template-file /Users/localuser/Do/learn-sam/dynamo-stream-lambda/packaged.yaml --stack-name barkingstack

ERROR

Failed to create the changeset: Waiter ChangeSetCreateComplete failed: Waiter encountered a terminal failure state Status: FAILED. Reason: Transform AWS::Serverless-2016-10-31 failed with: Invalid Serverless Application Specification document. Number of errors found: 1. Resource with id [PublishNewBark] is invalid. Missing required property 'Handler'.

Cloudformation/SAM Template

AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'

Globals:
  Function:
    Runtime: nodejs8.10
    Timeout: 300

Resources:
  PublishNewBark:
    Type: AWS::Serverless::Function
    FunctionName: publishNewBark
    CodeUri: .
    Handler: src/index.handler
    Role: "<ROLE_ARN>"
    Description: Reads from the DynamoDB Stream and publishes to an SNS topic
    Events:
      - ReceiveBark:
          Type: DynamoDB
          Stream: !GetAtt BarkTable.StreamArn
          StartingPosition: TRIM_HORIZON
          BatchSize: 1


  BarkTable:
    Type: AWS::DynamoDB::Table
    Properties:
      TableName: BarkTable
      KeySchema:
        - KeyType: HASH
          AttributeName: id
      AttributeDefinitions:
        - AttributeName: id
          AttributeType: S
      StreamSpecification:
        StreamViewType: NEW_AND_OLD_IMAGES
      ProvisionedThroughput:
        WriteCapacityUnits: 5
        ReadCapacityUnits: 5

  WooferTopic:
    Type: AWS::SNS::Topic
    Properties:
      DisplayName: wooferTopic
      TopicName: wooferTopic
      Subscription:
        - Endpoint: <my_email>
          Protocol: email

DIRECTORY STRUCTURE

root_directory/ events/ (for sample events) policies/ (for IAM Role to be created for the lambda using CLI) src/index.js package.json node_modules template.yaml

HANDLER CODE

async function handler (event, context) {
  console.log(JSON.stringify(event, null, 2))
  return {}
}

module.exports = {handler}
1

1 Answers

2
votes

I believe you have to put everything except the resource type under "Properties".

Your function declaration should be:

PublishNewBark:
    Type: AWS::Serverless::Function
    Properties:
        FunctionName: publishNewBark
        CodeUri: .
        Handler: src/index.handler
        Role: "<ROLE_ARN>"
        Description: Reads from the DynamoDB Stream and publishes to an SNS topic
        Events:
          - ReceiveBark:
              Type: DynamoDB
              Stream: !GetAtt BarkTable.StreamArn
              StartingPosition: TRIM_HORIZON
              BatchSize: 1