sops icon indicating copy to clipboard operation
sops copied to clipboard

Simple and flexible tool for managing secrets

Results 280 sops issues
Sort by recently updated
recently updated
newest added

While looking at #784 I noticed that the situation for both the INI and DotEnv stores is a lot worse than I thought: since they both escape newlines as literal...

I started looking into sops, which I find to be a really nice idea and implementation. Kudos! However, when testing some edgecase scenarios, I found some rough corners. Specifically, it...

There are multiple PRs open that modify README.rst, we shouldn't start splitting it up / moving it around / converting it to MD / ... before these are processed. So...

Since the config file loading is only done for backwards compatibility (and the result isn't used), we can simply skip it when only decrypting. (This is not a problem for...

When decrypting a file with `sops -d file.yaml` sops fails with `error loading config: no matching creation rules found` even if the file contains the correct sops metadata. If I...

This PR adds support to annotate comments with a string (e.g., `sops:enc`) which can then be matched with a regex. If it matches, the corresponding value (the one which follows...

I've recently observed a failure where 3.8.x was unable to decrypt a file which 3.7.3 had encrypted (and could still decrypt). The error message is as follows: ``` Expanding encrypted...

An ini file with a block style comment such as the one below will fail to decrypt. ```ini ;;;;;;;;;;;;;;;;; ; block comment ; ;;;;;;;;;;;;;;;;; [foo] foo = 1 ``` Encrypting...

Hello, I think I've found an edge case. On my computer I'm working on several projects, and all of them use sops. The problem is that not all store their...

I am using sops with Terraform and have the same issue as in [#818](https://github.com/getsops/sops/issues/818) ```shell │ Error: Failed to get the data key required to decrypt the SOPS file. │...