You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
We are running consul with https and when spring boot service trying to connect to consul with SSL using tls encrypted key-store-password & certificate-password it is giving error, same is working when we give plain password
due to security reasons we are not suppose to add plain password in application.properties, kindly provide solution to how we can decrypt this password before Consul Client object is created, thanks in advance
The text was updated successfully, but these errors were encountered:
Describe the bug
We are running consul with https and when spring boot service trying to connect to consul with SSL using tls encrypted key-store-password & certificate-password it is giving error, same is working when we give plain password
spring.cloud.consul.host=localhost
spring.cloud.consul.port=8500
spring.cloud.consul.discovery.hostname=localhost
spring.cloud.consul.scheme=https
spring.cloud.consul.discovery.prefer-ip-address=false
spring.cloud.consul.discovery.scheme=https
spring.cloud.consul.tls.key-store-instance-type=PKCS12
spring.cloud.consul.tls.key-store-password=bdksjfsjfsksbfsabfksbb
spring.cloud.consul.tls.key-store-path=keystore.p12
spring.cloud.consul.tls.certificate-path=truststore.p12
spring.cloud.consul.tls.certificate-password=bdksjfsjfsksbfsabfksbb
spring.cloud.consul.discovery.heartbeat.reregister-service-on-failure=true
Same is working if we provide plain password like below
spring.cloud.consul.tls.key-store-password=Admin@123
spring.cloud.consul.tls.certificate-password=Admin@123
due to security reasons we are not suppose to add plain password in application.properties, kindly provide solution to how we can decrypt this password before Consul Client object is created, thanks in advance
The text was updated successfully, but these errors were encountered: