-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcommon_docker.properties
More file actions
42 lines (30 loc) · 1.27 KB
/
common_docker.properties
File metadata and controls
42 lines (30 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# DataSource settings: set here your own configurations for the database
spring.datasource.url=${DATABASE_IDENTITY_URL}
spring.datasource.username=${DATABASE_IDENTITY_USERNAME}
spring.datasource.password=${DATABASE_IDENTITY_PASSWORD}
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
secondary.datasource.url=${DATABASE_URL}
secondary.datasource.username=${DATABASE_USERNAME}
secondary.datasource.password=${DATABASE_PASSWORD}
secondary.datasource.driver-class-name=com.mysql.jdbc.Driver
#ELK logging file name
logging.path=logs/
logging.file.name=${IDENTITY_API_LOGGING_FILE_NAME}
springdoc.api-docs.enabled=${SWAGGER_DOC_ENABLED}
springdoc.swagger-ui.enabled=${SWAGGER_DOC_ENABLED}
jwt.secret=${JWT_SECRET_KEY}
# TM Config
tm-url=${TM_API}
# FHIR Config
fhir-url=${FHIR_API}
# Redis Config
spring.redis.host=${REDIS_HOST}
cors.allowed-origins=${CORS_ALLOWED_ORIGINS}
# Elasticsearch Configuration
elasticsearch.host=${ELASTICSEARCH_HOST}
elasticsearch.port=${ELASTICSEARCH_PORT}
elasticsearch.username=${ELASTICSEARCH_USERNAME}
elasticsearch.password=${ELASTICSEARCH_PASSWORD}
elasticsearch.index.beneficiary=${ELASTICSEARCH_INDEX_BENEFICIARY}
# Enable/Disable ES (for gradual rollout)
elasticsearch.enabled=${ELASTICSEARCH_ENABLED}