Skip to content

Commit

Permalink
fix event bus benthos
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-nicolas committed Feb 28, 2024
1 parent 3c9293d commit 0a7d33f
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions ee/search/benthos/templates/event_bus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,23 @@ mapping: |
"topics": [ env("TOPIC_PREFIX") + this.topic ],
"consumer_group": this.consumer_group,
"checkpoint_limit": 1024,
"sasl": {
"mechanism": env("KAFKA_SASL_MECHANISM"),
"password": env("KAFKA_SASL_PASSWORD"),
"username": env("KAFKA_SASL_USERNAME"),
"aws": {
"region": env("AWS_REGION"),
"credentials": {
"profile": env("AWS_PROFILE"),
"id": env("AWS_ACCESS_KEY_ID"),
"secret": env("AWS_SECRET_ACCESS_KEY"),
"token": env("AWS_SESSION_TOKEN"),
"role": env("AWS_ROLE_ARN")
"sasl": [
{
"mechanism": env("KAFKA_SASL_MECHANISM"),
"password": env("KAFKA_SASL_PASSWORD"),
"username": env("KAFKA_SASL_USERNAME"),
"aws": {
"region": env("AWS_REGION"),
"credentials": {
"profile": env("AWS_PROFILE"),
"id": env("AWS_ACCESS_KEY_ID"),
"secret": env("AWS_SECRET_ACCESS_KEY"),
"token": env("AWS_SESSION_TOKEN"),
"role": env("AWS_ROLE_ARN")
}
}
}
},
],
"tls": {
"enabled": env("KAFKA_TLS_ENABLED") == "true"
}
Expand Down

0 comments on commit 0a7d33f

Please sign in to comment.