I am trying to make working hashicorp vault deployed on azure's AKS cluster with spring boot. I tried code from this blog post: blog post which works fine, but when I will change versions for:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.12.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
from
2.3.12.RELEASE
to
2.6.4
and
<spring-cloud.version>Hoxton.SR12</spring-cloud.version>
from
Hoxton.SR12
to
2021.0.1
then it stops to work, I dont see any errors in logs, but it returns me null's instead of values. Ive only updated dependencies there. Not sure what breaking changes were between. Can someone help me with this ?
thanks!