spring.application.name=Auth-Service spring.config.import=optional:configserver:${CONFIG_SERVER_URL:http://localhost:8088/} management.endpoints.web.exposure.include=* INTERNAL_SERVICE_KEY=InternalServiceKeyForAuthService jwt.secret=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IlRocmltYWwgQXZpc2hrYSIsImlhdCI6MTUxNjIzOTAyMn0ZfxIjj211oGwL0XQ8mjTwsBqRGwDOIYGdcOHswaqc ## jwt.access.expiration= 900000 jwt.access.expiration=1209600000 jwt.refresh.expiration=1209600000 USER_DEMARCATION_SERVICE=${USER_DEMARCATION_SERVICE_URL:http://localhost:8082} ## Below optional configurations are applied when config-server is down #====================================================================== server.port=8081 management.zipkin.tracing.endpoint=${ZIPKIN_URL:http://localhost:9411/api/v2/spans} management.zipkin.tracing.export.enabled=true management.health.refresh.enabled=true management.tracing.sampling.probability=1.0 eureka.client.service-url.defaultZone=${EUREKA_SERVER_URL:http://localhost:8761/eureka/} eureka.client.register-with-eureka=true eureka.client.fetch-registry=true eureka.client.initial-instance-info-replication-interval-seconds=10 eureka.client.registry-fetch-interval-seconds=10 eureka.client.healthcheck.enabled=true spring.cloud.config.fail-fast=false spring.cloud.config.retry.initial-interval=2000 spring.cloud.config.retry.max-attempts=10 spring.cloud.config.retry.max-interval=10000 spring.cloud.config.retry.multiplier=1.5 spring.datasource.url=jdbc:mysql://sfa-mysql-dev-sea-001.mysql.database.azure.com/${DB_NAME:raigamsfadb_dev}?serverTimezone=Asia/Colombo spring.datasource.username=sfamysadmn spring.datasource.password=#Dcf3qx%qhf5871@ spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.hikari.maximum-pool-size=25 spring.datasource.hikari.minimum-idle=5 spring.datasource.hikari.connection-timeout=30000 spring.datasource.hikari.idle-timeout=600000 spring.datasource.hikari.max-lifetime=1800000 spring.datasource.hikari.validation-timeout=3000 spring.datasource.hikari.pool-name=AuthServicePool spring.datasource.hikari.connection-test-query=SELECT 1 spring.jpa.database=mysql spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect spring.jpa.show-sql=true # spring.jpa.generate-ddl=true spring.jpa.hibernate.ddl-auto=validate logging.file.name=logs/AuthService-log.txt logging.level.root=INFO logging.level.org.springframework=WARN logging.level.org.springframework.web=ERROR logging.level.com.zaxxer.hikari=INFO logging.level.org.springframework.jdbc.datasource=WARN