hc-vault

A rust library to interact with hashicorp vault

Example

Obtaining a new Session using approle-auth

```rust let vaulturl = "http://localhost:8200".tostring(); let roleid = "example-role-id".tostring(); let secretid = "example-secret-id".tostring();

// Obtaining an Auth session, in this cause using approle let approleauth = match hcvault::approle::Session::new(roleid, secretid) { Err(e) => { println!("{}", e); return; }, Ok(a) => a, };

let config = hcvault::Config { vaulturl: 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 vaultclient = match hcvault::Client::new(config, approleauth).await { Err(e) => { println!("{}", e); return; }, Ok(c) => c, }; // Use vaultclient for whatever you need to do ```