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

#268 in Authentication

Download history 1/week @ 2024-01-18 10/week @ 2024-02-01 4/week @ 2024-02-08 23/week @ 2024-02-15 60/week @ 2024-02-22 26/week @ 2024-02-29 12/week @ 2024-03-07 20/week @ 2024-03-14 138/week @ 2024-03-21 18/week @ 2024-03-28 10/week @ 2024-04-04 25/week @ 2024-04-11 157/week @ 2024-04-18 10/week @ 2024-04-25 9/week @ 2024-05-02

201 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–24MB
~353K SLoC