Files
coder/cli/testdata/coder_secret_import_--help.golden
T
dylanhuff-at-coder 0b2a6cac78 feat: add coder secret import for bulk secret files (#27534)
Adds `coder secret import <file>` to bulk-import dotenv, JSON, or YAML
secrets through the existing batch API. The command infers the format
from the extension or accepts `--input-format`, supports non-interactive
stdin, validates files locally before upload, and warns when imported
keys cannot be injected as environment variables.

Reviewed and updated by Coder Agents on behalf of @dylanhuff-at-coder.
2026-07-28 14:37:29 -07:00

20 lines
617 B
Plaintext

coder v0.0.0-devel
USAGE:
coder secret import [flags] <file>
Import secrets from a file
Every key in the file becomes a secret. Keys allowed as environment variable
names are injected into workspaces under the same name. The import is all or
nothing, and existing secrets are never overwritten. Pass - to read the file
from non-interactive stdin (pipe or redirect).
OPTIONS:
--input-format env|json|yaml
Format of the secrets file. Inferred from the file extension when
unset, and required when reading from stdin.
———
Run `coder --help` for a list of global options.