Crates.io | hc-vault |
lib.rs | hc-vault |
version | 0.3.0 |
source | src |
created_at | 2020-12-07 22:12:40.949404 |
updated_at | 2020-12-21 16:39:23.418818 |
description | A simple crate to interact with hashicorp's vault |
homepage | |
repository | https://github.com/Lol3rrr/hc-vault |
max_upload_size | |
id | 320632 |
size | 170,312 |
A rust library to interact with hashicorp vault
let vault_url = "http://localhost:8200".to_string();
let role_id = "example-role-id".to_string();
let secret_id = "example-secret-id".to_string();
// Obtaining an Auth session, in this cause using approle
let approle_auth = match hc_vault::approle::Session::new(role_id, secret_id) {
Err(e) => {
println!("{}", e);
return;
},
Ok(a) => a,
};
let config = hc_vault::Config {
vault_url: vault_url, // The client will use this vault url
..Default::default() // Use the default values for everything else
};
// Obtaining a valid vault-session,
// using the previously obtained Auth Session and config
let vault_client = match hc_vault::Client::new(config, approle_auth).await {
Err(e) => {
println!("{}", e);
return;
},
Ok(c) => c,
};
// Use vault_client for whatever you need to do