Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MOSIP-31982] updated the document #1261

Merged
merged 26 commits into from
May 2, 2024
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0438302
MOSIP-32073 design document added (#1223)
Neha2365 Mar 25, 2024
ea81dea
POM changes (#1225)
Neha2365 Mar 27, 2024
b63f18f
updated the image path
Mar 27, 2024
09dcacf
MOSIP-31982 changes done for image
Apr 3, 2024
e462d11
MOSIP-31982 changes done for image
Apr 3, 2024
948cb48
Merge remote-tracking branch 'upstream/release-1.2.1.x' into imagepath
Apr 4, 2024
0e70296
Merge branch 'release-1.2.1.x' of https://github.com/mosip/id-authent…
Apr 4, 2024
60db8fb
MOSIP-31982 added kafka config in otp application
Apr 5, 2024
48860a8
MOSIP-31982 added kafka config in otp application
Apr 5, 2024
6387a2a
MOSIP-31982 Updated the pom and push trigger file
Apr 5, 2024
2daa1f3
Merge branch 'release-1.2.1.x' of https://github.com/mosip/id-authent…
Apr 5, 2024
1959609
test case issue is resolved
Apr 16, 2024
0a7d12e
test case issue is resolved with facedata
Apr 16, 2024
7d78cdc
test case issue is resolved with facedata
Apr 16, 2024
1e5020c
Merge branch 'release-1.2.1.x' of https://github.com/mosip/id-authent…
Apr 18, 2024
8c773f6
kafka bean enable and disable
Apr 18, 2024
50b9337
kafka bean enable and disable
Apr 18, 2024
5f3dadd
Error eventing condition check added
Apr 19, 2024
4149e77
resolved merge conflict
Apr 19, 2024
701d491
Merge branch 'release-1.2.1.x' of https://github.com/mosip/id-authent…
Apr 30, 2024
8eaf8ec
updated the documents
Apr 30, 2024
f92f7cd
updated the documents
Apr 30, 2024
54c8821
updated the documents
Apr 30, 2024
3ca4931
Merge branch 'release-1.2.1.x' of https://github.com/mosip/id-authent…
May 2, 2024
fa4aa66
MOSIP-31982 updated the document
May 2, 2024
39835bd
MOSIP-31982 updated the document
May 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading