From 2e206808af0fa5a56f9166512ffa3f768df9b92a Mon Sep 17 00:00:00 2001 From: Neha2365 <110969715+Neha2365@users.noreply.github.com> Date: Thu, 2 May 2024 20:49:47 +0530 Subject: [PATCH] [MOSIP-31982] updated the document (#1261) * MOSIP-32073 design document added (#1223) Signed-off-by: Neha Farheen Co-authored-by: Neha Farheen Signed-off-by: Neha Farheen * POM changes (#1225) Signed-off-by: Neha Farheen Co-authored-by: Neha Farheen Signed-off-by: Neha Farheen * updated the image path Signed-off-by: Neha Farheen * MOSIP-31982 changes done for image Signed-off-by: Neha Farheen * MOSIP-31982 changes done for image Signed-off-by: Neha Farheen * MOSIP-31982 added kafka config in otp application Signed-off-by: Neha Farheen * MOSIP-31982 added kafka config in otp application Signed-off-by: Neha Farheen * MOSIP-31982 Updated the pom and push trigger file Signed-off-by: Neha Farheen * test case issue is resolved Signed-off-by: Neha Farheen * test case issue is resolved with facedata Signed-off-by: Neha Farheen * test case issue is resolved with facedata Signed-off-by: Neha Farheen * kafka bean enable and disable Signed-off-by: Neha Farheen * kafka bean enable and disable Signed-off-by: Neha Farheen * Error eventing condition check added Signed-off-by: Neha Farheen * updated the documents Signed-off-by: Neha Farheen * updated the documents Signed-off-by: Neha Farheen * updated the documents Signed-off-by: Neha Farheen * MOSIP-31982 updated the document Signed-off-by: Neha Farheen * MOSIP-31982 updated the document Signed-off-by: Neha Farheen --------- Signed-off-by: Neha Farheen Co-authored-by: Neha Farheen --- docs/configuration.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 233bded7624..8f89577a56b 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -12,6 +12,32 @@ id-authentication-external-default.properties id-authentication-internal-default.properties id-authentication-otp-default.properties identity-mapping.json +``` +## Optional Configuration +Below properties needed to be add in id-authentication-default.properties to configure Authentication Error Eventing feature which is present in 1.2.1.0 + +id-authentication-default.properties: + +- It enable and disable the bean init of kafka and Authentication error eventing +``` +mosip.ida.authentication.error.eventing.enabled=true +``` + +- If we enable authentication error eventing as true we need all the below property +``` +ida-topic-authentication-error-eventing=AUTHENTICATION_ERRORS +``` + +- Partner Id for encryption used in ondemand template extraction +``` +mosip.ida.authentication.error.eventing.encrypt.partner.id=mpartner-default-tempextraction +``` + +- kafka Configuration +``` +mosip.ida.kafka.bootstrap.servers=kafka-0.kafka-headless.${kafka.profile}:${kafka.port},kafka-1.kafka-headless.${kafka.profile}:${kafka.port},kafka-2.kafka-headless.${kafka.profile}:${kafka.port} +spring.kafka.admin.properties.allow.auto.create.topics=true + ``` See [Module Configuration](https://docs.mosip.io/1.2.0/modules/module-configuration) for location of these files.