4 releases (2 breaking)

0.3.0 Mar 21, 2024
0.2.1 Oct 20, 2023
0.2.0 Sep 19, 2023
0.1.1 Sep 6, 2023

#270 in Authentication

Download history 15/week @ 2023-12-30 10/week @ 2024-01-06 14/week @ 2024-01-13 10/week @ 2024-02-03 5/week @ 2024-02-10 45/week @ 2024-02-17 54/week @ 2024-02-24 10/week @ 2024-03-02 13/week @ 2024-03-09 136/week @ 2024-03-16 20/week @ 2024-03-23 25/week @ 2024-03-30 2/week @ 2024-04-06

185 downloads per month

MIT license

14KB
242 lines

Vaultier /slɒθ/ 🦥

Small crate to read secrets from Hashicorp Vault. Based on vaultrs.

Usage

use vaultier::SecretClient;
use serde::Deserialize;

#[derive(Deserialize)]
struct MySecrets {
    pub username: String,
    pub password: String,
}

let address = "<vault instance address>";
let mount = String::from("<mount>");
let base_path = String::from("<base_path>");

// With token or default feature enabled
let client = SecretClient::new(address, mount, base_path, None).unwrap();

// With auth feature enabled
let auth_mount = "<mount to vault auth>";
let role = "<your role>";
let client = SecretClient::create(address, auth_mount, role, mount, base_path).unwrap();

// read secrets from that base path
let secrets = client.read_secrets::<MySecrets>().await.unwrap();

// read secrets from the passed path relative to the base path: mount/data/base_path/my-secrets
let secrets = client.read_secrets_from::<MySecrets>("my-secrets").await.unwrap();

License

MIT

Dependencies

~8–23MB
~349K SLoC