akv-cli 0.10.1

The Azure Key Vault CLI (unofficial) can read secrets from Key Vault, securely pass secrets to other commands or inject them into configuration files, encrypt and decrypt secrets, and managed keys and secrets in Key Vault.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2025 Heath Stewart.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.

//! Models for re-serializing to the terminal.
//!
//! Works around <https://github.com/Azure/azure-sdk-for-rust/issues/4269>.

mod certificate;
mod key;
mod secret;

pub use certificate::*;
pub use key::*;
pub use secret::*;