Spring Cloud Config incorrect property override

20 Views Asked by At

I have property

password: '{cipher}xxxx' 

in my application.yml properties file. When Spring Cloud Config Server overrides value of this property with decrypted value I get something like

password: "data-raw=decryptedpassword"

I saw that using /{application}/{profile} endpoint. Is there any way to remove this prefix "data-raw=" from decrypted value?

0

There are 0 best solutions below