BetterCloud / vault-java-driver

Zero-dependency Java client for HashiCorp's Vault
https://bettercloud.github.io/vault-java-driver/
336 stars 223 forks source link

Auth should support configurable mount points #65

Open mskeefe opened 7 years ago

mskeefe commented 7 years ago

For example, the Auth.loginByCert() API calls to /v1/auth/cert/login. However, the "cert" portion of this path is actually configurable within Vault. For example, I configure this to be environment specific (e.g. /v1/auth/env-1/login)

See https://www.vaultproject.io/api/system/auth.html regarding configurable auth mounts.

steve-perkins commented 7 years ago

This has been merged into master (see PR #69), and will go out with the next release.

mskeefe commented 7 years ago

Thanks!