Struct diem_config::config::VaultConfig [−][src]
pub struct VaultConfig {
pub ca_certificate: Option<PathBuf>,
pub namespace: Option<String>,
pub renew_ttl_secs: Option<u32>,
pub server: String,
pub token: Token,
pub disable_cas: Option<bool>,
pub connection_timeout_ms: Option<u64>,
pub response_timeout_ms: Option<u64>,
}Fields
ca_certificate: Option<PathBuf>Optional SSL Certificate for the vault host, this is expected to be a full path.
namespace: Option<String>A namespace is an optional portion of the path to a key stored within Vault. For example, a secret, S, without a namespace would be available in secret/data/S, with a namespace, N, it would be in secret/data/N/S.
renew_ttl_secs: Option<u32>Vault leverages leases on many tokens, specify this to automatically have your lease renewed up to that many seconds more. If this is not specified, the lease will not automatically be renewed.
server: StringVault’s URL, note: only HTTP is currently supported.
token: TokenThe authorization token for accessing secrets
disable_cas: Option<bool>Disable check-and-set when writing secrets to Vault
connection_timeout_ms: Option<u64>Timeout for new vault socket connections, in milliseconds.
response_timeout_ms: Option<u64>Timeout for generic vault operations (e.g., reads and writes), in milliseconds.
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for VaultConfig
impl Send for VaultConfig
impl Sync for VaultConfig
impl Unpin for VaultConfig
impl UnwindSafe for VaultConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = T
Should always be Self
Generates a hash used only for tests.