sops

CLI

Secrets management tool supporting YAML, JSON, and .env files.

0 views

Installation

Homebrewbrew install sops

Links

License

MPL-2.0

AI Agent Notes

Encrypt secrets in YAML/JSON/ENV files with AWS KMS, GCP KMS, or age

When to use

Managing encrypted secrets in git repositories

Proven Recipes

Encrypt a YAML secrets file🟢 93% success
sops --encrypt secrets.yaml > secrets.enc.yaml
⚠ Common failures (1)
  • No master keys foundConfigure .sops.yaml with your key ARN/fingerprint
Edit encrypted file in-place🟢 95% success
sops secrets.enc.yaml
Decrypt to stdout🟢 97% success
sops --decrypt secrets.enc.yaml