mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 16:43:54 +00:00
34 lines
812 B
Plaintext
34 lines
812 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sops
|
|
|
|
> SOPS (Secrets OPerationS): manage secrets.
|
|
> More information: <https://github.com/mozilla/sops>.
|
|
|
|
- Encrypt a file:
|
|
|
|
`sops -e {{path/to/myfile.json}} > {{path/to/myfile.enc.json}}`
|
|
|
|
- Decrypt a file to `stdout`:
|
|
|
|
`sops -d {{path/to/myfile.enc.json}}`
|
|
|
|
- Rotate data keys for a sops file:
|
|
|
|
`sops -r {{path/to/myfile.enc.yaml}}`
|
|
|
|
- Change the extension of the file once encrypted:
|
|
|
|
`sops -d --input-type json {{path/to/myfile.enc.json}}`
|
|
|
|
- Extract keys by naming them, and array elements by numbering them:
|
|
|
|
`sops -d --extract '["an_array"][1]' {{path/to/myfile.enc.json}}`
|
|
|
|
- Show the difference between two sops files:
|
|
|
|
`diff <(sops -d {{path/to/secret1.enc.yaml}}) <(sops -d {{path/to/secret2.enc.yaml}})`
|