6 releases (3 breaking)

new 0.4.1 Jan 6, 2025
0.4.0 Sep 17, 2024
0.3.0 Mar 21, 2024
0.2.1 Oct 20, 2023
0.1.1 Sep 6, 2023

#369 in Authentication

Download history 73/week @ 2024-09-18 57/week @ 2024-09-25 42/week @ 2024-10-02 49/week @ 2024-10-09 20/week @ 2024-10-16 33/week @ 2024-10-23 28/week @ 2024-10-30 49/week @ 2024-11-06 34/week @ 2024-11-13 15/week @ 2024-11-20 23/week @ 2024-11-27 32/week @ 2024-12-04 22/week @ 2024-12-11 4/week @ 2024-12-18 172/week @ 2025-01-01

207 downloads per month

MIT license

19KB
348 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–20MB
~278K SLoC