🚧 Work in progress, not encouraged for use in production. 🚧
Azure Key Vault is a service in Microsoft Azure for securely storing and accessing secrets, credentials and certificates in the cloud. This crate exposes Rust bindings for the Azure Key Vault REST API.
This project is a standalone contribution to MindFlavor/AzureSDKForRust and is also a learning project for Rust 🦀
```rust use azuresdkkeyvault::KeyVaultClient; use std::env;
async fn main() -> Result<(), Box
// Set a secret.
client.set_secret("test-secret", "42").await?;
// Get a secret.
let secret = client.get_secret(&secret_name).await?;
assert_eq!("42", secret.value());
Ok(())
} ```
...are welcome! Currently the repo exposes a very small number of operations.
This project was started from the fantastic MindFlavor/AzureSDKForRust repo.