GitHub - oyachai/rules_aws_lambda

Skip to content

Navigation Menu

Sign in

Appearance settings

Bazel rule to generate AWS Lambda packages

This repository contains bazel rules to create packages suitable for uploading to AWS Lambda.

Setup

In your WORKSPACE file:

rules_version="e9d4bbaf4c359db7b8276babb0b82c7acde5934d" # update this as needed

http_archive(
    name = "io_bazel_rules_aws_lambda",
    strip_prefix = "rules_aws_lambda-%s" % rules_version,
    type = "zip",
    url = "https://github.com/oyachai/rules_aws_lambda/archive/%s.zip" % rules_version,
)

Usage

See the examples here