* chore: upgrade maintenance scripts to robust PyYAML parsing - Replaces fragile regex frontmatter parsing with PyYAML/yaml library - Ensures multi-line descriptions and complex characters are handled safely - Normalizes quoting and field ordering across all maintenance scripts - Updates validator to strictly enforce description quality * fix: restore and refine truncated skill descriptions - Recovered 223+ truncated descriptions from git history (6.5.0 regression) - Refined long descriptions into concise, complete sentences (<200 chars) - Added missing descriptions for brainstorming and orchestration skills - Manually fixed imagen skill description - Resolved dangling links in competitor-alternatives skill * chore: sync generated registry files and document fixes - Regenerated skills index with normalized forward-slash paths - Updated README and CATALOG to reflect restored descriptions - Documented restoration and script improvements in CHANGELOG.md * fix: restore missing skill and align metadata for full 955 count - Renamed SKILL.MD to SKILL.md in andruia-skill-smith to ensure indexing - Fixed risk level and missing section in andruia-skill-smith - Synchronized all registry files for final 955 skill count * chore(scripts): add cross-platform runners and hermetic test orchestration * fix(scripts): harden utf-8 output and clone target writeability * fix(skills): add missing date metadata for strict validation * chore(index): sync generated metadata dates * fix(catalog): normalize skill paths to prevent CI drift * chore: sync generated registry files * fix: enforce LF line endings for generated registry files
146 lines
3.6 KiB
Markdown
146 lines
3.6 KiB
Markdown
---
|
|
name: azure-keyvault-secrets-rust
|
|
description: 'Azure Key Vault Secrets SDK for Rust. Use for storing and retrieving secrets, passwords, and API keys. Triggers: "keyvault secrets rust", "SecretClient rust", "get secret rust", "set secret rust".'
|
|
risk: unknown
|
|
source: community
|
|
date_added: '2026-02-27'
|
|
---
|
|
|
|
# Azure Key Vault Secrets SDK for Rust
|
|
|
|
Client library for Azure Key Vault Secrets — secure storage for passwords, API keys, and other secrets.
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
cargo add azure_security_keyvault_secrets azure_identity
|
|
```
|
|
|
|
## Environment Variables
|
|
|
|
```bash
|
|
AZURE_KEYVAULT_URL=https://<vault-name>.vault.azure.net/
|
|
```
|
|
|
|
## Authentication
|
|
|
|
```rust
|
|
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,
|
|
)?;
|
|
```
|
|
|
|
## Core Operations
|
|
|
|
### Get Secret
|
|
|
|
```rust
|
|
let secret = client
|
|
.get_secret("secret-name", None)
|
|
.await?
|
|
.into_model()?;
|
|
|
|
println!("Secret value: {:?}", secret.value);
|
|
```
|
|
|
|
### Set Secret
|
|
|
|
```rust
|
|
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()?;
|
|
```
|
|
|
|
### Update Secret Properties
|
|
|
|
```rust
|
|
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?;
|
|
```
|
|
|
|
### Delete Secret
|
|
|
|
```rust
|
|
client.delete_secret("secret-name", None).await?;
|
|
```
|
|
|
|
### List Secrets
|
|
|
|
```rust
|
|
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);
|
|
}
|
|
```
|
|
|
|
### Get Specific Version
|
|
|
|
```rust
|
|
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()?;
|
|
```
|
|
|
|
## Best Practices
|
|
|
|
1. **Use Entra ID auth** — `DeveloperToolsCredential` for dev, `ManagedIdentityCredential` for production
|
|
2. **Use `into_model()?`** — to deserialize responses
|
|
3. **Use `ResourceExt` trait** — for extracting names from IDs
|
|
4. **Handle soft delete** — deleted secrets can be recovered within retention period
|
|
5. **Set content type** — helps identify secret format
|
|
6. **Use tags** — for organizing and filtering secrets
|
|
7. **Version secrets** — new values create new versions automatically
|
|
|
|
## RBAC Permissions
|
|
|
|
Assign these Key Vault roles:
|
|
- `Key Vault Secrets User` — get and list
|
|
- `Key Vault Secrets Officer` — full CRUD
|
|
|
|
## Reference Links
|
|
|
|
| Resource | Link |
|
|
|----------|------|
|
|
| API Reference | https://docs.rs/azure_security_keyvault_secrets |
|
|
| Source Code | https://github.com/Azure/azure-sdk-for-rust/tree/main/sdk/keyvault/azure_security_keyvault_secrets |
|
|
| crates.io | https://crates.io/crates/azure_security_keyvault_secrets |
|
|
|
|
## When to Use
|
|
This skill is applicable to execute the workflow or actions described in the overview.
|