You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2025. It is now read-only.
Creates an AWS Lambda function triggered by a Kinesis [event](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html).
4
+
5
+
## requirements
6
+
7
+
-[Terraform 0.12+](https://www.terraform.io/)
8
+
- authentication configuration for the [aws provider](https://www.terraform.io/docs/providers/aws/)
9
+
10
+
## usage
11
+
12
+
```
13
+
$ terraform init
14
+
$ terraform plan
15
+
```
16
+
17
+
## bootstrap with func
18
+
19
+
In case you are using [go](https://golang.org/) for developing your Lambda functions, you can also use [func](https://github.com/spring-media/func) to bootstrap your project and get started quickly:
20
+
21
+
```
22
+
$ func new example-with-kinesis -e kinesis
23
+
$ cd example-with-kinesis && make init package plan
0 commit comments