-
Hi all, Is it possible to allow changes to an encrypted file without the user needing to decrypt the file? Context is I'm looking to provide a way for my team to self-service in adding or updating new key values (secrets) without them having the access to decrypt the entire file. eg. in a encrypted file like this:
I want a user to be able to either add a new key, or modify an existing one like:
and then running through Currently there doesn't seem to be a way to re-encrypt as
I'm wondering if there's any known solutions/workarounds to this or how would you approach this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The simple answer is: no What I'd do in this case is have multiple sops files, where each "access level" has full RW access to their own sops file. Then either read multiple files in or combine them in your deployment process. |
Beta Was this translation helpful? Give feedback.
The simple answer is: no
What I'd do in this case is have multiple sops files, where each "access level" has full RW access to their own sops file. Then either read multiple files in or combine them in your deployment process.