From e8c52d4f29ef2e730c3528f20a3c09f55c5d4443 Mon Sep 17 00:00:00 2001 From: Chengjie Yin <89034346+chengjie8@users.noreply.github.com> Date: Fri, 27 Oct 2023 12:36:57 -0400 Subject: [PATCH] added back ssl changes for kafka producer --- .../application-integration-test.yaml | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/svc-bie-kafka/src/main/resources/application-integration-test.yaml b/svc-bie-kafka/src/main/resources/application-integration-test.yaml index 773e16c027..20278871b1 100644 --- a/svc-bie-kafka/src/main/resources/application-integration-test.yaml +++ b/svc-bie-kafka/src/main/resources/application-integration-test.yaml @@ -12,20 +12,20 @@ spring: producer: key-serializer: "org.apache.kafka.common.serialization.StringSerializer" value-serializer: "org.apache.kafka.common.serialization.StringSerializer" -# security.protocol: SSL -# ssl: -# keystore-location: "file:${KEYSTORE_FILE}" -# keystore-password: "${BIE_KAFKA_KEYSTORE_PASSWORD}" -# key-store-type: "PKCS12" -# truststore-location: "file:${TRUSTSTORE_FILE}" -# truststore-password: "${BIE_KAFKA_TRUSTSTORE_PASSWORD}" -# trust-store-type: "PKCS12" -# admin: -# security.protocol: SSL -# ssl: -# keystore-location: "file:${KEYSTORE_FILE}" -# keystore-password: "${BIE_KAFKA_KEYSTORE_PASSWORD}" -# key-store-type: "PKCS12" -# truststore-location: "file:${TRUSTSTORE_FILE}" -# truststore-password: "${BIE_KAFKA_TRUSTSTORE_PASSWORD}" -# trust-store-type: "PKCS12" + security.protocol: SSL + ssl: + keystore-location: "file:${KEYSTORE_FILE}" + keystore-password: "${BIE_KAFKA_KEYSTORE_PASSWORD}" + key-store-type: "PKCS12" + truststore-location: "file:${TRUSTSTORE_FILE}" + truststore-password: "${BIE_KAFKA_TRUSTSTORE_PASSWORD}" + trust-store-type: "PKCS12" + admin: + security.protocol: SSL + ssl: + keystore-location: "file:${KEYSTORE_FILE}" + keystore-password: "${BIE_KAFKA_KEYSTORE_PASSWORD}" + key-store-type: "PKCS12" + truststore-location: "file:${TRUSTSTORE_FILE}" + truststore-password: "${BIE_KAFKA_TRUSTSTORE_PASSWORD}" + trust-store-type: "PKCS12"