Commands

vault-autopilot

vault-autopilot [OPTIONS] COMMAND [ARGS]...

Options

-D, --debug, --no-debug

Enable debug mode.

-c, --config <config>

Path to a YAML configuration file.

Commands

apply

Apply a manifest to a Vault server from a…

vault-autopilot apply

Apply a manifest to a Vault server from a file, directory, or standard input.

Examples:

# Apply a manifest from a file
$ vault-autopilot apply -f manifest.yaml
# Apply manifests from a folder recursively
$ vault-autopilot apply -Rf /path/to/folder/**/*.yaml
# Apply a manifest from standard input
$ cat manifest.yaml | vault-autopilot apply
vault-autopilot apply [OPTIONS]

Options

-f, --filename <filename>

Specify the path to the manifest file(s) you want to apply (can be repeated). Accepts Unix globbing patterns, which allow you to specify multiple files or directories at once. If you omit this option, the command will read the manifests from standard input.

-R, --recursive

Process the directories used in -f, –filename recursively. Useful when you want to manage related manifests organized within the same directory.