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.
// Copyright 2025 Heath Stewart.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// cspell:ignore docsrs
#![cfg_attr(docsrs,feature(doc_cfg))]#![deny(missing_docs)]#![doc=include_str!("../README.md")]pubmodcache;#[cfg(feature ="color")]pubmodcolor;moderror;pubmodjose;pubmodjson;pubmodparsing;pubuseerror::*;/// Whether to write color attributes to the terminal.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]pubenumColorMode{/// Write color attributes if `stdout` is a TTY and color is not otherwise disabled.
#[default]
Auto,/// Always write color attributes.
Always,/// Never write color attributes.
Never,}