从Spring Vault的官方网站来看,它支持HashiCorp的Vault,并且有一些HashiCorp的Vault的示例。
它是否支持Azure密钥库原生?
从the azure document开始,springboot启动器为
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-keyvault-secrets</artifactId>
</dependency>
Spring Vault可以与Azure Key Vault集成吗?如果可以,如何集成?
多谢了。
西蒙
1条答案
按热度按时间ehxuflar1#
目前还没有官方文件要求Spring Vault与Azure Key Vault集成。
从这个春 Boot 官方文件来看,只提到了HashiCorp的vault集成,除了HashiCorp的vault与春靴云库集成之外,没有其他云平台。
Spring Cloud Vault Config为分布式系统中的外部化配置提供客户端支持。使用HashiCorp的Vault,您可以集中管理所有环境中应用程序的外部机密属性。Vault可以管理静态和动态机密,如远程应用程序/资源的用户名/密码,并为MySQL、PostgreSQL、Apache Cassandra、MongoDB、Consl、AWS等外部服务提供凭据。
但是,您可以使用spring Boot 应用程序中的访问密钥访问azure密钥库,因为您可以引用相同的document
参考:https://spring.io/projects/spring-vault#overview