-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update modules * Fill out MSK SASL support * Fix lint errors * Make config parsing strict * Update README * Remove unnecessary import * Remove unnecessary log message * Update config * Fix config * Update tests * Update directories * Update README * Bump version
- Loading branch information
1 parent
c87c02d
commit d62a095
Showing
21 changed files
with
343 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
meta: | ||
name: msk-cluster | ||
environment: aws-env | ||
region: aws-region | ||
description: | | ||
Example of config for AWS MSK cluster with IAM authentication enabled. | ||
spec: | ||
bootstrapAddrs: | ||
# These are dummy placeholders; replace them with the broker addresses for your MSK cluster. | ||
- "b-1.my-cluster.kafka.aws-region.amazonaws.com:9098" | ||
- "b-2.my-cluster.kafka.aws-region.amazonaws.com:9098" | ||
- "b-3.my-cluster.kafka.aws-region.amazonaws.com:9098" | ||
|
||
tls: | ||
# TLS is enabled on the IAM-authenticated broker endpoints by default | ||
enabled: true | ||
sasl: | ||
# No credentials are set here; instead, they'll be pulled from | ||
# the environment, a shared credentials file, a shared configuration file, or the EC2 metadata | ||
# service as described here: https://docs.aws.amazon.com/sdk-for-go/api/aws/session/. | ||
enabled: true | ||
mechanism: AWS-MSK-IAM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
meta: | ||
name: topic-default | ||
cluster: msk-cluster | ||
environment: aws-env | ||
region: aws-region | ||
description: | | ||
Topic that uses default (any) strategy for assigning partition brokers. | ||
spec: | ||
partitions: 3 | ||
replicationFactor: 3 | ||
retentionMinutes: 100 | ||
placement: | ||
strategy: any | ||
settings: | ||
cleanup.policy: delete | ||
max.message.bytes: 5542880 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.