-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: oppdater sops til å kun endre på hvordan man kan bruke gcp tok…
…ens for å gjøre forskjellen så liten som mulig
- Loading branch information
1 parent
d4ac2a5
commit e20a53d
Showing
54 changed files
with
8,985 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Package codes the exit statuses returned by the sops binary | ||
package codes | ||
|
||
// Exit statuses returned by the binary | ||
const ( | ||
ErrorGeneric int = 1 | ||
CouldNotReadInputFile int = 2 | ||
CouldNotWriteOutputFile int = 3 | ||
ErrorDumpingTree int = 4 | ||
ErrorReadingConfig int = 5 | ||
ErrorInvalidKMSEncryptionContextFormat int = 6 | ||
ErrorInvalidSetFormat int = 7 | ||
ErrorConflictingParameters int = 8 | ||
ErrorEncryptingMac int = 21 | ||
ErrorEncryptingTree int = 23 | ||
ErrorDecryptingMac int = 24 | ||
ErrorDecryptingTree int = 25 | ||
CannotChangeKeysFromNonExistentFile int = 49 | ||
MacMismatch int = 51 | ||
MacNotFound int = 52 | ||
ConfigFileNotFound int = 61 | ||
KeyboardInterrupt int = 85 | ||
InvalidTreePathFormat int = 91 | ||
NeedAtLeastOneDocument int = 92 | ||
NoFileSpecified int = 100 | ||
CouldNotRetrieveKey int = 128 | ||
NoEncryptionKeyFound int = 111 | ||
DuplicateDecryptionKeyType int = 112 | ||
FileHasNotBeenModified int = 200 | ||
NoEditorFound int = 201 | ||
FailedToCompareVersions int = 202 | ||
FileAlreadyEncrypted int = 203 | ||
) |
Oops, something went wrong.