Minimal
The smallest valid configuration — one secret with a service name.
#:schema https://raw.githubusercontent.com/jordanburke/envpkt/main/schemas/envpkt.schema.json
version = 1
[meta.API_KEY]service = "stripe"This is enough to:
- Track that
API_KEYauthenticates to Stripe - Run
envpkt audit(will reportmissing_metadatafor missingexpires) - Run
envpkt inspectto view the config
Adding More Detail
Section titled “Adding More Detail”Incrementally add fields as you learn more about your credentials:
[meta.API_KEY]service = "stripe"purpose = "Process payments"expires = "2027-01-15"rotation_url = "https://dashboard.stripe.com/apikeys"See the TOML Schema reference for all available fields.