Skip to content

Commit

Permalink
Stream Enrich Kafka: Enable AWS MSK IAM Authentication (close #547)
Browse files Browse the repository at this point in the history
  • Loading branch information
CapCaWork authored and benjben committed Jan 27, 2022
1 parent ee37882 commit 3a7f43a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ lazy val streamKafka = project
Docker / packageName := "stream-enrich-kafka",
)
.settings(libraryDependencies ++= Seq(
Dependencies.Libraries.kafkaClients
Dependencies.Libraries.kafkaClients,
Dependencies.Libraries.mskAuth
))
.enablePlugins(JavaAppPackaging, DockerPlugin)
.dependsOn(streamCommon)
Expand Down
2 changes: 2 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ object Dependencies {
val gcpSdk = "1.118.1"
val kinesisClient = "1.14.5"
val kafka = "2.2.1"
val mskAuth = "1.1.1"
val nsqClient = "1.2.0"
val jackson = "2.11.4"
val config = "1.3.4"
Expand Down Expand Up @@ -154,6 +155,7 @@ object Dependencies {
val sts = "com.amazonaws" % "aws-java-sdk-sts" % V.awsSdk % Runtime
val gcs = "com.google.cloud" % "google-cloud-storage" % V.gcpSdk
val kafkaClients = "org.apache.kafka" % "kafka-clients" % V.kafka
val mskAuth = "software.amazon.msk" % "aws-msk-iam-auth" % V.mskAuth % Runtime
val jacksonCbor = "com.fasterxml.jackson.dataformat" % "jackson-dataformat-cbor" % V.jackson
val config = "com.typesafe" % "config" % V.config
val log4jOverSlf4j = "org.slf4j" % "log4j-over-slf4j" % V.slf4j
Expand Down

0 comments on commit 3a7f43a

Please sign in to comment.