envpkt inspect
Display a human-readable view of your envpkt.toml configuration. Automatically resolves catalog references.
envpkt inspect [options]Options
Section titled “Options”| Option | Description | Default |
|---|---|---|
-c, --config <path> | Path to envpkt.toml | Auto-detected |
--format <format> | Output format: table, json | table |
--resolved | Show resolved view (catalog merged) | false |
--secrets | Show secret values from environment (masked by default) | false |
--plaintext | Show secret values in plaintext (requires --secrets) | false |
Examples
Section titled “Examples”# Inspect current directoryenvpkt inspect
# Inspect specific fileenvpkt inspect -c path/to/envpkt.toml
# Raw JSON dumpenvpkt inspect --format json
# Show resolved view with catalog mergedenvpkt inspect --resolved
# Show secret values (masked)envpkt inspect --secrets
# Show secret values in plaintextenvpkt inspect --secrets --plaintextSecret Display Modes
Section titled “Secret Display Modes”The --secrets flag reads values from environment variables matching each secret key:
- Without
--secrets: Only metadata is shown, no values - With
--secrets: Values are masked (e.g.,pos•••••t/db) - With
--secrets --plaintext: Full values are displayed