skip to Main Content

Configuring properties injection from Azure Keyvault using spring boot and spring-cloud-azure-starter-keyvault-secrets

I would like to replace spring.datasource.password with a password from azure keyvault. I have a project based on spring boot: <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.1</version> I am using dependencies : <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> <version>1.13.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.azure.spring</groupId>…

VIEW QUESTION
Back To Top
Search