0.0.2 • Published 2 years ago

furlaws v0.0.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

Deploy Rust-based AWS Lambda Functions

Use Furlaws to quickly deploy and change AWS Lambda Functions. This mini-framework builds on top of the AWS CDK.

Usage

If you've written your Lambda with the lambda_http crate (example), first build your lambda function targeting x86_64-unknown-linux-musl then run the furlaws command.

$ cargo build --release --target x86_64-unknown-linux-musl

$ npx furlaws my-furl target/x86_64-unknown-linux-musl/release/http-basic-lambda

...

my-furl.url = https://1234567890abcdef.lambda-url.region.on.aws/

Note: Your AWS CLI credentials are used to deploy the function.