Skip to content

Commit

Permalink
Added note about destination of handler entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Dane committed Jul 15, 2020
1 parent 834c353 commit a89ad31
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions migration-lambdas/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ published and aliased versions of AWS Lambdas. The orb currently only supports b
lambda function code zip file from node.js (12.x by default) but the steps can be used
independently if you need to define a custom job to build the zip file.

**NOTE:** The source code will be built into the `dist` folder in the packaged lambda function code.
You will need to check that the terraform defining the entry point references this directory e.g.:

```
resource "aws_lambda_function" "cool-lambda" {
...
handler = "dist/handler.handler"
...
}
```

## Jobs

### node-test-and-package
Expand Down

0 comments on commit a89ad31

Please sign in to comment.