el.keys-generator.1.1.5.5.source-code.bootstrap.properties Maven / Gradle / Ivy
# Application name - the name appended at starting of file name to differentiate
# between different property files for different microservices
spring.application.name=keys-generator
#Active Profile - will relate to development properties file in the server.
#If this property is absent then default profile will be activated which is
#the property file without any environment name at the end.
spring.profiles.active=dev
# url where spring cloud config server is running
spring.cloud.config.uri=localhost
keymanager.persistence.jdbc.schema=keymgr
#exposing refresh endpoint so that whenevr configuration changes in git,
#post /actuator/refresh endpoint can be called for the client microservices
#to update the configuration
management.endpoint.health.show-details=always
management.endpoints.web.exposure.include=info,health,refresh,restart
#disabling health check so that client doesnt try to load properties from sprint config server every
# 5 minutes (should not be done in production)
health.config.enabled=false