From 767c2cce9106053c71f133b8092fa75ae822bdf2 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sun, 30 Apr 2017 13:31:54 +0200 Subject: [PATCH] ReadMe and dependency updates --- README.md | 6 ++++++ pom.xml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6801d9..d0783a9 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject * Delete secrets * Renew/revoke leases * Raw secret content or JSON decoding + * SQL secret handling * Connector Factory with builder pattern * Tested against Vault 0.7.0 @@ -58,6 +59,11 @@ VaultConnector vault = VaultConnectorFactory.httpFactory() .withPort(8200) .withTrustedCA(Paths.get("/path/to/CA.pem")) .build(); + +// Initialization from environment variables +VaultConnector vault = VaultConnectorFactory.httpFactory() + .fromEnv() + .build(); ``` ### Authentication diff --git a/pom.xml b/pom.xml index d96571e..2ea686b 100644 --- a/pom.xml +++ b/pom.xml @@ -52,12 +52,12 @@ com.fasterxml.jackson.core jackson-core - 2.8.7 + 2.8.8 com.fasterxml.jackson.core jackson-databind - 2.8.7 + 2.8.8