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
With SOPS v3.7.0 merged, we are now able to add support for the Age encryption format.
Rough sketch of what needs to be done:
KustomizeDecryptor
.asc
.age
sops/keyservice
The text was updated successfully, but these errors were encountered:
hiddeco
Successfully merging a pull request may close this issue.
With SOPS v3.7.0 merged, we are now able to add support for the Age encryption format.
Rough sketch of what needs to be done:
KustomizeDecryptor
so that only.asc
key/value pairs from the referred secret are written to disk..age
key/value pairs (in bytes) to be used for decryption using Age.sops/keyservice
server so that it is capable of encrypting and decrypting the Age encryption format with the keys we collected from the secret. Inspiration for this can be drawn from from https://github.com/mozilla/sops/blob/66043e71a81787d6513bc2e5505a29aac67dc6f1/keyservice/server.go#L294-L301. As https://github.com/mozilla/sops/blob/master/age/keysource.go can simply be loaded with bytes, we likely won't have to do much more than constructing the keysource with the right values, and then use it to decrypt.The text was updated successfully, but these errors were encountered: