open-vault/website/source/api/libraries.html.md

136 lines
2.5 KiB
Markdown
Raw Normal View History

2015-05-22 21:32:14 +00:00
---
2017-03-17 18:06:03 +00:00
layout: "api"
2015-05-22 21:32:14 +00:00
page_title: "HTTP API: Libraries"
sidebar_current: "docs-http-libraries"
description: |-
List of official and community contributed libraries for interacting with the Vault HTTP API.
---
# Libraries
The programming libraries listed on this page can be used to consume the API more conveniently.
Some are officially maintained while others are provided by the community.
## Official
2015-07-31 21:10:38 +00:00
These libraries are officially maintained by HashiCorp.
2015-07-31 21:10:38 +00:00
### Go
2015-05-22 21:32:14 +00:00
* [Vault Go Client](https://github.com/hashicorp/vault/tree/master/api)
2017-03-06 21:10:35 +00:00
```shell
$ go get github.com/hashicorp/vault/api
```
2015-05-22 21:32:14 +00:00
### Ruby
2015-05-22 21:32:14 +00:00
* [Vault Ruby Client](https://github.com/hashicorp/vault-ruby)
2017-03-06 21:10:35 +00:00
```shell
$ gem install vault
```
## Community
These libraries are provided by the community.
2016-07-27 16:34:13 +00:00
### Ansible
* [Ansible Modules Hashivault](https://pypi.python.org/pypi/ansible-modules-hashivault)
2017-03-06 21:10:35 +00:00
```shell
$ pip install ansible-modules-hashivault
```
2016-07-27 16:34:13 +00:00
### C#
* [VaultSharp](https://github.com/rajanadar/VaultSharp) (.NET Standard = 1.4 (.NET Core >= 1.0.0) and also .NET 4.5.x, .NET 4.6.x)
2017-03-06 21:10:35 +00:00
```shell
$ Install-Package VaultSharp
```
2016-12-30 01:26:47 +00:00
* [Vault.NET](https://github.com/Chatham/Vault.NET)
2017-03-06 21:10:35 +00:00
```shell
$ Install-Package Vault
```
2016-10-29 17:53:06 +00:00
### Clojure
* [vault-clj](https://github.com/amperity/vault-clj)
2015-05-22 21:32:14 +00:00
2016-09-13 13:23:46 +00:00
### Elixir
* [vaultex](https://hex.pm/packages/vaultex)
### Go
* [vc](https://github.com/adfinis-sygroup/vault-client)
2017-03-06 21:10:35 +00:00
```shell
$ go get github.com/adfinis-sygroup/vault-client
```
### Haskell
* [vault-tool](https://hackage.haskell.org/package/vault-tool)
2017-03-06 21:10:35 +00:00
```shell
$ cabal install vault-tool
```
### Java
2016-10-29 17:53:06 +00:00
* [Spring Vault](https://github.com/spring-projects/spring-vault)
* [vault-java](https://github.com/jhaals/vault-java)
2016-01-30 02:02:54 +00:00
* [vault-java-driver](https://github.com/BetterCloud/vault-java-driver)
### Kotlin
* [vault-kotlin](https://github.com/kunickiaj/vault-kotlin)
### Node.js
2015-05-22 21:32:14 +00:00
* [node-vault](https://github.com/kr1sp1n/node-vault)
2017-03-06 21:10:35 +00:00
```shell
$ npm install node-vault
```
* [vaulted](https://github.com/chiefy/vaulted)
2017-03-06 21:10:35 +00:00
```shell
$ npm install vaulted
```
2016-04-20 13:59:39 +00:00
### PHP
* [vault-php-sdk](https://github.com/jippi/vault-php-sdk)
2017-03-06 21:10:35 +00:00
```shell
$ composer require jippi/vault-php-sdk
```
2017-02-10 17:39:18 +00:00
* [vault-php-sdk](https://github.com/violuke/vault-php-sdk) extended from jipppi
2017-03-06 21:10:35 +00:00
```shell
$ composer require violuke/vault-php-sdk
```
2016-04-20 13:59:39 +00:00
### Python
* [HVAC](https://github.com/ianunruh/hvac)
2017-03-06 21:10:35 +00:00
```shell
$ pip install hvac
```
2016-12-30 01:26:47 +00:00
### Rust
* [HashicorpVault](https://crates.io/crates/hashicorp_vault)
### Scala
* [scala-vault](https://github.com/janstenpickle/scala-vault)