Secrets configuration reference

For other top-level configuration options, see:

  • Global Options - Global settings like data directories and timezone
  • Pipeline Components - Configure sources, transforms, sinks, and enrichment tables
  • API - Configure Vector's observability API
  • Schema - Configure Vector's internal schema system

Secrets management lets you keep sensitive configuration values like API keys, passwords, and tokens out of your Vector configuration files. Instead of writing a secret’s plaintext value directly into a config option, you configure a secret backend and reference the secret with SECRET[<backend name>.<secret name>]. Vector resolves these references by querying the backend when it loads the configuration, before any other config processing happens.

This is the recommended way to supply secrets to Vector, in preference to environment variable interpolation. Unlike environment variables, secret values are never written to the Vector process’s environment, so they can’t leak to anyone with access to /proc/<PID>/environ or similar. Note that, like environment variable interpolation, secret resolution substitutes the retrieved value directly into the configuration text before it’s parsed, so a secret value containing YAML/TOML syntax can still alter the parsed configuration; only pull secrets from backends and paths you trust.

Usage

Configure one or more backends under the top-level secret option, then reference secrets from that backend anywhere in your configuration using the SECRET[<backend name>.<secret name>] syntax:

secret:
  backend_1:
    type: "exec"
    command: ["/path/to/cmd1"]

sources:
  my_source_id:
    type: "aws_sqs"
    region: "us-east-1"
    queue_url: "https://sqs.us-east-2.amazonaws.com/123456789012/MyQueue"
    auth:
      access_key_id: "SECRET[backend_1.aws_access_key_id]"
      secret_access_key: "SECRET[backend_1.aws_secret_access_key]"

Here, auth.access_key_id and auth.secret_access_key are resolved using secrets named aws_access_key_id and aws_secret_access_key, retrieved from the backend_1 secret backend. You can reference the same backend from multiple places in your configuration, and you can configure multiple backends if you need to pull secrets from more than one source.

The backend name portion supports only letters, digits, and _; backend names containing - aren’t addressable from a SECRET[...] reference (known issue), even though - is otherwise a valid character in a backend’s component ID. The secret name portion is more permissive and supports ., -, and / characters, so backends that key secrets hierarchically (such as the directory backend, below) can be referenced like SECRET[backend_1.nested/secret_name].

Text that matches the SECRET[<backend name>.<secret name>] grammar but can’t be resolved — for example, because the backend doesn’t recognize the requested secret name, returns an error, or returns an empty value — causes Vector to log the error and exit during configuration loading. Secrets are never partially applied. Text that doesn’t match the grammar at all, for example a backend name containing -, is left in the configuration as a literal string instead, with no resolution error.

secret

optional object
All configured secrets backends.

secret.*

required object
A secret backend.
secret.*.auth
optional object
Configuration of the authentication strategy for interacting with AWS services.
Relevant when: type = "aws_secrets_manager"
The AWS access key ID.
Examples
"AKIAIOSFODNN7EXAMPLE"
The ARN of an IAM role to assume.
Examples
"arn:aws:iam::123456789098:role/my_role"
Path to the credentials file.
Examples
"/my/aws/credentials"
The optional unique external ID in conjunction with role to assume.
Examples
"randomEXAMPLEidString"
secret.*.auth.imds
optional object
Configuration for authenticating with AWS through IMDS.
Connect timeout for IMDS.
default: 1(seconds)
Number of IMDS retries for fetching tokens and metadata.
default: 4
Read timeout for IMDS.
default: 1(seconds)

Timeout for successfully loading any credentials, in seconds.

Relevant when the default credentials chain or assume_role is used.

Examples
30
secret.*.auth.profile
optional string

The credentials profile to use.

Used to select AWS credentials from a provided credentials file.

Examples
"develop"
default: default
secret.*.auth.region
optional string

The AWS region to send STS requests to.

If not set, this defaults to the configured region for the service itself.

Examples
"us-west-2"
The AWS secret access key.
Examples
"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"

The optional RoleSessionName is a unique session identifier for your assumed role.

Should be unique per principal or reason. If not set, the session name is autogenerated like assume-role-provider-1736428351340

Examples
"vector-indexer-role"
The AWS session token. See AWS temporary credentials
Examples
"AQoDYXdz...AQoDYXdz..."
secret.*.command
required [string]

Command arguments to execute.

The path to the script or binary must be the first argument.

Relevant when: type = "exec"
secret.*.endpoint
optional string
Custom endpoint for use with AWS-compatible services.
Relevant when: type = "aws_secrets_manager"
Examples
"http://127.0.0.0:5000/path/to/service"
secret.*.path
required string
File path to read secrets from.
Relevant when: type = "file" or type = "directory"
secret.*.protocol
optional object
Settings for the protocol between Vector and the secrets executable.
Relevant when: type = "exec"
The configuration to pass to the secrets executable. This is the config field in the backend request. Refer to the documentation of your backend_type to see which options are required to be set.
Relevant when: version = "v1_1"
The name of the backend. This is type field in the backend request.
Relevant when: version = "v1_1"
secret.*.protocol.version
optional string enum
The protocol version.
Enum options
OptionDescription
v1Expect the command to fetch the configuration options itself.
v1_1Configuration options to the command are to be curried upon each request.
default: v1
secret.*.region
optional string
The AWS region of the target service.
Relevant when: type = "aws_secrets_manager"
Examples
"us-east-1"
Remove trailing whitespace from file contents.
Relevant when: type = "directory"
default: false
secret.*.secret_id
required string
ID of the secret to resolve.
Relevant when: type = "aws_secrets_manager"
secret.*.timeout
optional uint
The timeout, in seconds, to wait for the command to complete.
Relevant when: type = "exec"
default: 5
secret.*.tls
optional object
TLS configuration.
Relevant when: type = "aws_secrets_manager"

Sets the list of supported ALPN protocols.

Declare the supported ALPN protocols, which are used during negotiation with a peer. They are prioritized in the order that they are defined.

secret.*.tls.ca_file
optional string

Absolute path to an additional CA certificate file.

The certificate must be in the DER or PEM (X.509) format. Additionally, the certificate can be provided as an inline string in PEM format.

Examples
"/path/to/certificate_authority.crt"
secret.*.tls.crt_file
optional string

Absolute path to a certificate file used to identify this server.

The certificate must be in DER, PEM (X.509), or PKCS#12 format. Additionally, the certificate can be provided as an inline string in PEM format.

If this is set and is not a PKCS#12 archive, key_file must also be set.

Examples
"/path/to/host_certificate.crt"
secret.*.tls.key_file
optional string

Absolute path to a private key file used to identify this server.

The key must be in DER or PEM (PKCS#8) format. Additionally, the key can be provided as an inline string in PEM format.

Examples
"/path/to/host_certificate.key"
secret.*.tls.key_pass
optional string

Passphrase used to unlock the encrypted key file.

This has no effect unless key_file is set.

Examples
"${KEY_PASS_ENV_VAR}"
"PassWord1"

Server name to use when using Server Name Indication (SNI).

Only relevant for outgoing connections.

Examples
"www.example.com"

Enables certificate verification. For components that create a server, this requires that the client connections have a valid client certificate. For components that initiate requests, this validates that the upstream has a valid certificate.

If enabled, certificates must not be expired and must be issued by a trusted issuer. This verification operates in a hierarchical manner, checking that the leaf certificate (the certificate presented by the client/server) is not only valid, but that the issuer of that certificate is also valid, and so on, until the verification process reaches a root certificate.

Do NOT set this to false unless you understand the risks of not verifying the validity of certificates.

Enables hostname verification.

If enabled, the hostname used to connect to the remote host must be present in the TLS certificate presented by the remote host, either as the Common Name or as an entry in the Subject Alternative Name extension.

Only relevant for outgoing connections.

Do NOT set this to false unless you understand the risks of not verifying the remote hostname.

secret.*.type
required string enum
secret type
Enum options
OptionDescription
aws_secrets_managerAWS Secrets Manager.
directoryDirectory.
execExec.
fileFile.
Docs home
Reference
Configuration
Sinks
Global options Pipeline components TLS configuration API Unit tests Schema Template syntax Secrets
CLI Environment Variables API Glossary
Morty Proxy This is a proxified and sanitized view of the page, visit original site.