-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding sample for ddb and kinesis streams #219
base: master
Are you sure you want to change the base?
Conversation
a7cb99b
to
35ef51e
Compare
I added @baermat as reviewer to give feedback on whether the PR satisfies all the criteria needed for the samples |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool thanks for adding! Just a really minor nit: Could we format the python code with black maybe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, and sorry for the late review, this one slipped through 😬
I have one small change request 🙂
dynamodb-kinesis-stream/Makefile
Outdated
|
||
run: ## Deploy and run the sample locally | ||
@(test -d .terraform || tflocal init) && tflocal apply --auto-approve | ||
pip install boto3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pip install should probably be in the install section. Also it would probably make sense to put this into a venv to not cause problems on the host (we probably should put even the "command" installs into a venv to make it cleaner, but that's how it is right now across the samples). see e.g. https://github.com/localstack/localstack-pro-samples/blob/master/iot-basics/Makefile
Adding the sample we pitched today.