From 8038a526ab78bf66eab8028cdfd3d48b9e2d1bcf Mon Sep 17 00:00:00 2001 From: Miguel C Date: Fri, 20 Jun 2025 14:55:02 +0100 Subject: [PATCH] Update getJaasConfig.ts Per GCP docs this is the correct JaasConfig: https://cloud.google.com/managed-service-for-apache-kafka/docs/quickstart-java#configure_and_run_the_application --- frontend/src/widgets/ClusterConfigForm/utils/getJaasConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/widgets/ClusterConfigForm/utils/getJaasConfig.ts b/frontend/src/widgets/ClusterConfigForm/utils/getJaasConfig.ts index 1575e9e05..e35e4614e 100644 --- a/frontend/src/widgets/ClusterConfigForm/utils/getJaasConfig.ts +++ b/frontend/src/widgets/ClusterConfigForm/utils/getJaasConfig.ts @@ -11,7 +11,7 @@ const JAAS_CONFIGS = { 'SASL/AWS IAM': 'software.amazon.msk.auth.iam.IAMLoginModule', 'SASL/Azure Entra': 'org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule', - 'SASL/GCP IAM': 'com.google.cloud.hosted.kafka.auth.GcpLoginCallbackHandler', + 'SASL/GCP IAM': 'org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule', }; type MethodName = keyof typeof JAAS_CONFIGS;