SOPS (Secrets OPerationS): 비밀 관리를 위한 간단하고 유연한 도구. 더 많은 정보: https://github.com/getsops/sops.
sops -e {{경로/대상/파일.json}} > {{경로/대상/파일.enc.json}}
stdout으로 복호화:sops -d {{경로/대상/파일.enc.json}}
sops 파일에서 선언된 키 업데이트:sops updatekeys {{경로/대상/파일.enc.yaml}}
sops 파일의 데이터 키 회전:sops -r {{경로/대상/파일.enc.yaml}}
sops -d --input-type json {{경로/대상/파일.enc.json}}
sops -d --extract '["an_array"][1]' {{경로/대상/파일.enc.json}}
sops 파일 간의 차이점 표시:diff <(sops -d {{경로/대상/secret1.enc.yaml}}) <(sops -d {{경로/대상/secret2.enc.yaml}})