Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.32 KB

README.md

File metadata and controls

54 lines (35 loc) · 1.32 KB

Lapper (Lambda wrapper)

lapper

! Lapper is still in Beta version !
Lapper is a wrapper container for Lambda Functions.

lapper.png

Concept

  • Easy to add notification on your function.
  • Function Language agnostic.

Usage

1. Build Container Image

Build your container image from lapper container image.

FROM docker.pkg.github.com/finatext/lapper/lapper:beta
WORKDIR ${LAMBDA_TASK_ROOT}
COPY test.sh ${LAMBDA_TASK_ROOT}
CMD ["./test.sh"]

2. Set Environment Variables

You can use these variables.

  • LAPPER_SLACK_WEBHOOK_URL(Optional) ... Slack Webhook URL for notification.
  • LAPPER_NOTIFY_COND(Optional, Default:stderr) ... Specify when to notify.
    • all ... Notify every time.
    • stderr ... Notify if stderr was output.
    • exitcode ... Notify if exit code wasn't 0.
  • LAPPER_POST_STDOUT(Optional, Default:false) ... Whether includes STDOUT on message.
  • LAPPER_POST_STDERR(Optional, Default:true) ... Whether includes STDERR on message.
  • LAPPER_POST_ERROR(Optional, Default:true) ... Whether includes error on message.

Examples

License

MIT

Author

Satoshi Tajima