1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! Provides command line arguments that are typically used for all services using this module.

use std::path::PathBuf;

use clap::Parser;
use reqwest::Url;

#[derive(Parser, Debug)]
pub struct SsArgs {
    /// The maximum time we allow for a lease to expire. This is important to curb
    /// situations where the secret store is not honoring a previously advised
    /// lease duration for some reason. While this should never happen, given the
    /// nature of the secret store being in a separate process, it technically
    /// can happen (and has!).
    #[clap(env, long, default_value = "30m")]
    pub ss_max_lease_duration: humantime::Duration,

    /// The max number of Vault Secret Store secrets to retain by our cache at any time.
    /// Least Recently Used (LRU) secrets will be evicted from our cache once this value
    /// is exceeded.
    #[clap(env, long, default_value_t = 10_000)]
    pub ss_max_secrets: usize,

    /// A namespace to use when communicating with the Vault Secret Store
    #[clap(env, long, default_value = "default")]
    pub ss_ns: String,

    /// The Vault Secret Store role_id to use for approle authentication.
    #[clap(env, long)]
    pub ss_role_id: String,

    /// A URL of the Vault Secret Store server to communicate with
    #[clap(env, long, default_value = "http://localhost:9876")]
    pub ss_server: Url,

    /// A path to a TLS cert pem file to be used for connecting with the Vault Secret Store server.
    #[clap(env, long)]
    pub ss_server_cert_path: Option<PathBuf>,

    /// Insecurely trust the Secret Store's TLS certificate
    #[clap(env, long)]
    pub ss_server_insecure: bool,

    /// A data field to used in place of Vault's lease_duration field. Time
    /// will be interpreted as a humantime string e.g. "1m", "1s" etc. Note
    /// that v2 of the Vault server does not appear to populate the lease_duration
    /// field for the KV secret store any longer. Instead, we can use a "ttl" field
    /// from the data.
    #[clap(env, long)]
    pub ss_ttl_field: Option<String>,

    /// How long we wait until re-requesting the Vault Secret Store server for an
    /// authentication given a bad auth prior.
    #[clap(env, long, default_value = "1m")]
    pub ss_unauthenticated_timeout: humantime::Duration,

    /// How long we wait until re-requesting the Vault Secret Store server for an
    /// unauthorized secret again.
    #[clap(env, long, default_value = "1m")]
    pub ss_unauthorized_timeout: humantime::Duration,
}