https://github.com/juliocesarscheidt/aws-msk-cluster
https://github.com/juliocesarscheidt/aws-msk-cluster
aws msk
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliocesarscheidt/aws-msk-cluster
- Owner: juliocesarscheidt
- License: mit
- Created: 2021-06-28T01:19:21.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-28T01:20:10.000Z (almost 5 years ago)
- Last Synced: 2025-03-18T02:44:26.382Z (about 1 year ago)
- Topics: aws, msk
- Language: HCL
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: security_group.tf
Awesome Lists containing this project
README
# AWS Kafka Cluster as Code
This project is intended to create a Kafka Cluster on AWS as code
```bash
export STAGE="development"
export AWS_ACCESS_KEY_ID="$AWS_ACCESS_KEY_ID"
export AWS_SECRET_ACCESS_KEY="$AWS_SECRET_ACCESS_KEY"
export AWS_DEFAULT_REGION="$AWS_DEFAULT_REGION"
export AWS_BACKEND_BUCKET_NAME="kafka-cluster-backend-$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 12 | head -n1)"
export KAFKA_LOGS_BUCKET_NAME="kafka-cluster-$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 12 | head -n1)"
make init
make apply
```