Spring Vault and Spring Cloud Vault 1.0.0.M1 are now available
On behalf of the community, I am pleased to announce the first milestone releases of Spring Vault and Spring Cloud Vault 1.0.0.M1.
The artifacts are available in the Milestone repo.
What is Spring Vault and Spring Cloud Vault?
Spring Vault is a client for HashiCorp Vault that provides familiar Spring abstractions. It comes with @VaultPropertySource that exposes encrypted properties from Vault the Environment and VaultTemplate to access secrets stored and encrypted inside Vault.
@Configuration
@VaultPropertySource("secret/my-application")
public class AppConfig extends…