Provides the Azure Key Vault Secrets SDK for Rust to store and retrieve secrets, passwords, and API keys. Includes operations for get, set, update, delete, and list secrets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-awesome-skills:azure-keyvault-secrets-rustThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Client library for Azure Key Vault Secrets — secure storage for passwords, API keys, and other secrets.
Client library for Azure Key Vault Secrets — secure storage for passwords, API keys, and other secrets.
cargo add azure_security_keyvault_secrets azure_identity
AZURE_KEYVAULT_URL=https://<vault-name>.vault.azure.net/
use azure_identity::DeveloperToolsCredential;
use azure_security_keyvault_secrets::SecretClient;
let credential = DeveloperToolsCredential::new(None)?;
let client = SecretClient::new(
"https://<vault-name>.vault.azure.net/",
credential.clone(),
None,
)?;
let secret = client
.get_secret("secret-name", None)
.await?
.into_model()?;
println!("Secret value: {:?}", secret.value);
use azure_security_keyvault_secrets::models::SetSecretParameters;
let params = SetSecretParameters {
value: Some("secret-value".into()),
..Default::default()
};
let secret = client
.set_secret("secret-name", params.try_into()?, None)
.await?
.into_model()?;
use azure_security_keyvault_secrets::models::UpdateSecretPropertiesParameters;
use std::collections::HashMap;
let params = UpdateSecretPropertiesParameters {
content_type: Some("text/plain".into()),
tags: Some(HashMap::from([("env".into(), "prod".into())])),
..Default::default()
};
client
.update_secret_properties("secret-name", params.try_into()?, None)
.await?;
client.delete_secret("secret-name", None).await?;
use azure_security_keyvault_secrets::ResourceExt;
use futures::TryStreamExt;
let mut pager = client.list_secret_properties(None)?.into_stream();
while let Some(secret) = pager.try_next().await? {
let name = secret.resource_id()?.name;
println!("Secret: {}", name);
}
use azure_security_keyvault_secrets::models::SecretClientGetSecretOptions;
let options = SecretClientGetSecretOptions {
secret_version: Some("version-id".into()),
..Default::default()
};
let secret = client
.get_secret("secret-name", Some(options))
.await?
.into_model()?;
DeveloperToolsCredential for dev, ManagedIdentityCredential for productioninto_model()? — to deserialize responsesResourceExt trait — for extracting names from IDsAssign these Key Vault roles:
Key Vault Secrets User — get and listKey Vault Secrets Officer — full CRUDThis skill is applicable to execute the workflow or actions described in the overview.
npx claudepluginhub franklyn-r-silva/antigravity-awesome-skills131plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 131 plugins
Provides the Azure Key Vault Secrets SDK for Rust to store and retrieve secrets, passwords, and API keys. Includes operations for get, set, update, delete, and list secrets.
Stores and retrieves secrets, passwords, and API keys from Azure Key Vault in Rust. Covers authentication, CRUD operations, and error handling using the official azure_security_keyvault_secrets crate.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.