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: String

Vault’s URL, note: only HTTP is currently supported.

token: Token

The 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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 !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

Generates a hash used only for tests.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.