We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have no idea how many cases this happens in, but I found at least one case where sops duplicates comments in yaml files.
I'm able to reproduce this with the following steps.
First create a yaml file with the following content:
a: b: c: - name: test_1 test: a # I get duplicated - name: test_2 test: b
Then encrypt it with sops.
$ cat test.yaml a: b: c: - name: test_1 test: a # I get duplicated - name: test_2 test: b $ sops --version sops 3.7.1 (latest) $ sops -e --verbose -i test.yaml [GCPKMS] INFO[0000] Encryption succeeded resourceID=REMOVED [CMD] INFO[0000] File written successfully
Now decrypt it with sops.
$ sops -d test.yaml a: b: c: - name: test_1 test: a # I get duplicated # I get duplicated # I get duplicated - name: test_2 test: b
The text was updated successfully, but these errors were encountered:
#866 should fix this.
Sorry, something went wrong.
No branches or pull requests
I have no idea how many cases this happens in, but I found at least one case where sops duplicates comments in yaml files.
I'm able to reproduce this with the following steps.
First create a yaml file with the following content:
Then encrypt it with sops.
Now decrypt it with sops.
The text was updated successfully, but these errors were encountered: