Currently, Am using Azure keyvault service in one of the application which runs on SpringBoot version 2.3.0.RELEASE with SAP Cloud SDK version 3.35.0 which is not working with the below configurations in bootstrap.yml . This is required to get the configuration server credentials
azure:
keyvault:
enabled: true
uri:
client-id:
client-key:
tenant-id:
spring:
cloud:
config:
uri: https://test:${config-server-creds}@xxx.com
with pom.xml
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-keyvault-secrets-spring-boot-starter</artifactId>
<version>2.3.3</version>
<scope>runtime</scope>
</dependency>
No logs are printed in the console while Applications boots-up. Any idea on this issue?Is there any Sprinboot versions issue.