1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-03 23:12:54 +00:00

feat: patient pid may be replaced with gPAS pseudonym, now.

This commit is contained in:
Jakub Lidke
2023-07-27 13:01:58 +02:00
parent 79d83ef04a
commit 90c5b81c2b
9 changed files with 302 additions and 30 deletions

View File

@ -2,14 +2,28 @@ spring:
docker:
compose:
file: ./dev-compose.yml
datasource:
hikari:
jdbc-url: "jdbc:mariadb://localhost:13306/dev"
driver-class-name: "org.mariadb.jdbc.Driver"
username: "dev"
password: "dev"
url: "jdbc:mariadb://localhost:13306/dev"
app:
rest:
uri: http://localhost:9000/bwhc/etl/api/MTBFile
#kafka:
# topic: test
# servers: kafka:9092
# rest:
# uri: "https://bwhc-test.diz.uni-marburg.de/bwhc/etl/api/MTBFile"
pseudonymizer: GPAS
pseudonymize:
prefix: "test"
gpas:
target: "demo.study.demo"
uri: "http://localhost:8080/ttp-fhir/fhir/gpas/$pseudonymizeAllowCreate"
username: ""
password: ""
sslCaLocation: ""
kafka:
servers: "localhost:9092"
topic: test-dev
server:
port: 8000

View File

@ -4,4 +4,16 @@ spring:
template:
default-topic: ${app.kafka.topic}
flyway:
locations: "classpath:db/migration/{vendor}"
locations: "classpath:db/migration/{vendor}"
main:
allow-bean-definition-overriding: true
app:
rest:
#uri: "localhost:9000/bwhc/etl/api/MTBFile"
pseudonymizer: BUILDIN
server:
port: 8000