interface SecretsPluginOptions
Since 0.1.0

Options for the SecretsPlugin factory.

Examples

Example 1

app.register(SecretsPlugin({ provider: 'vault', options: {
  address: 'https://vault.example.com', token: process.env.VAULT_TOKEN,
} }));

Properties

Provider backend. Defaults to 'env'.

Provider-specific options.

Usage

import { type SecretsPluginOptions } from "secrets-plugin/src/index.ts";