https://github.com/mrwormhole/hotdog-localstack-poc
PoC for running AWS services(kinesis, dynamodb, lambdas) locally with Localstack :mag_right:
https://github.com/mrwormhole/hotdog-localstack-poc
localstack proof-of-concept
Last synced: 3 months ago
JSON representation
PoC for running AWS services(kinesis, dynamodb, lambdas) locally with Localstack :mag_right:
- Host: GitHub
- URL: https://github.com/mrwormhole/hotdog-localstack-poc
- Owner: mrwormhole
- Created: 2021-06-28T23:44:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-16T12:26:36.000Z (almost 5 years ago)
- Last Synced: 2025-10-20T04:02:44.359Z (8 months ago)
- Topics: localstack, proof-of-concept
- Language: Go
- Homepage:
- Size: 7.96 MB
- Stars: 46
- Watchers: 2
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hotdog-localstack-PoC
PoC for running AWS services(kinesis, dynamodb, lambdas) locally with Localstack
```
alias awslocal="aws --endpoint-url=http://localhost:4566"
```
```
docker network create localstack-tutorial
docker-compose up -d --build
./zip-it.sh
terraform init
terraform apply --auto-approve
awslocal lambda list-functions
awslocal dynamodb list-tables
awslocal kinesis list-streams
```
Note: Make sure you are matching your AWS REGION in docker-compose.yml, terraform provider's region and session.NewSession(). They all need to be the same region.