sops
4 commands
4 shown
Encrypt in place with age
Encrypt only values in place; note: keys stay readable so diffs stay reviewable
SOPS_AGE_RECIPIENTS=age1<id> sops -e -i secrets.yaml
Re-encrypt to new recipients
Rotate data key to recipients in .sops.yaml without re-encrypting plaintext manually
sops updatekeys secrets.yaml
Run command with decrypted env
Inject decrypted secrets as env vars for one command; note: nothing hits disk
sops exec-env secrets.enc.yaml 'terraform apply'
Surgical value edit
Set a single nested key without opening an editor; great for scripted rotation
sops --set '["db"]["password"] "s3cr3t"' secrets.enc.yaml
no commands match