sops
sops copied to clipboard
Simple and flexible tool for managing secrets
This MR implements https://github.com/mozilla/sops/issues/692 I realize there is already a MR https://github.com/mozilla/sops/pull/898 but it implements the ssh encryption as a completely new method. I just patched the existing age module...
### Issue description The setup here is an aws ec2 instance with Ubuntu 22.04, amd64 with go1.21.5 and age v1.1.1 installed. I ran `make test` after cloning the project with...
Properties files are still used heavily in the Jvm world (which means java, scala, and tons of other languages). It would be nice if there was support for encrypting the...
I want to achieve something like this: ```bash sops --encrypt --whisper @rsc conf.yaml ``` The line above will encrypt the `conf.yaml` for github users `rsc`, every user's public key is...
This commit adds rust code formatting to the CI closes #1397
Currently there is a lot of logic in `cmd/sops` package. But because it is a main package it is not really possible to reuse that from another CLI. I made...
`sops -e -i secrets.yaml` ```--- kind: Secret apiVersion: v1 metadata: name: linkerd-identity-issuer namespace: linkerd labels: linkerd.io/control-plane-component: identity linkerd.io/control-plane-ns: linkerd annotations: linkerd.io/created-by: linkerd/cli stable-2.10.2 linkerd.io/identity-issuer-expiry: 2031-01-01T00:00:00Z data: crt.pem: LS0tLS... key.pem: LS0tLS1CR......
Hello, For the given yaml, how can I write an `encrypted_regex` to only match "Default" under "B"? ``` A: Type: string Default: string B: Type: string Default: string ``` If...
Reformatting can easily be done with `cd functional-tests && cargo fmt`. Ref: https://github.com/getsops/sops/pull/1390#pullrequestreview-1799218671
These changes remove the JSON encoding/decoding steps that are performed during the serialization of *ini* and *dotenv* files. This roundtrip loses type information during the transformation which causes values to...