Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat(coderd): connect dbcrypt package implementation#9523

New issue

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
johnstcn merged 38 commits intomainfromcj/dbcrypt_redux_2
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
38 commits
Select commitHold shift + click to select a range
fb953e4
feat(coderd): add dbcrypt package
johnstcnSep 4, 2023
3b8140b
feat(coderd): plumb through dbcrypt package
johnstcnSep 4, 2023
55b93e7
fix indentation
johnstcnSep 5, 2023
f340cba
fixup! fix indentation
johnstcnSep 5, 2023
feae634
check for primary key revocation on startup
johnstcnSep 5, 2023
381f078
retry insert active key on tx serialization failure
johnstcnSep 5, 2023
c42e6a6
fixup! retry insert active key on tx serialization failure
johnstcnSep 5, 2023
6a50a43
use database.IsSerializedError
johnstcnSep 5, 2023
46b1ff4
encryptFields: check for nil field or digest
johnstcnSep 5, 2023
9c18168
rm insertDBCryptKeyNoLock
johnstcnSep 5, 2023
6c28ce5
Merge branch 'cj/dbcrypt_redux_1' into cj/dbcrypt_redux_2
johnstcnSep 5, 2023
c54b64a
Update enterprise/cli/dbcrypt_rotate.go
johnstcnSep 5, 2023
5959b34
Update enterprise/coderd/coderd.go
johnstcnSep 5, 2023
b1546b1
add unit test for ExtractAPIKeyMW
johnstcnSep 5, 2023
3859e03
add unit test for cli.ConnectToPostgres
johnstcnSep 5, 2023
a4f93c5
Merge remote-tracking branch 'origin/main' into cj/dbcrypt_redux_2
johnstcnSep 6, 2023
55a0fd0
DON'T PANIC
johnstcnSep 6, 2023
cce0244
debug log user_ids
johnstcnSep 6, 2023
d51ec66
dbcrypt-rotate -> server dbcrypt rotate
johnstcnSep 6, 2023
aa39fcc
refactor: move rotate logic into dbcrypt
johnstcnSep 6, 2023
e69e3ef
add decrypt/delete commands
johnstcnSep 6, 2023
ebf4eef
fixup! add decrypt/delete commands
johnstcnSep 6, 2023
2de6cc3
beef up unit tests, refactor cli
johnstcnSep 6, 2023
7774811
update golden files
johnstcnSep 6, 2023
35ca78f
Update codersdk/deployment.go
johnstcnSep 6, 2023
3a92a7d
Merge remote-tracking branch 'origin/main' into cj/dbcrypt_redux_2
johnstcnSep 7, 2023
8b1f43c
revoke all active keys on dbcrypt delete
johnstcnSep 7, 2023
270cdc1
fixup! Merge remote-tracking branch 'origin/main' into cj/dbcrypt_red…
johnstcnSep 7, 2023
2514ffe
update docs
johnstcnSep 7, 2023
cd351af
fixup! update docs
johnstcnSep 7, 2023
2f5c112
fixup! update docs
johnstcnSep 7, 2023
2450d13
soft-enforce dbcrypt in license
johnstcnSep 7, 2023
e56b639
do not add external token encryption keys by default (as it will alwa…
johnstcnSep 7, 2023
441fcbf
update golden files
johnstcnSep 7, 2023
ba14128
log encryption status on startup
johnstcnSep 7, 2023
2ae45c6
modify CLI output
johnstcnSep 7, 2023
13451f0
Merge remote-tracking branch 'origin/main' into cj/dbcrypt_redux_2
johnstcnSep 7, 2023
b3ff024
rm unused golden file
johnstcnSep 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Merge remote-tracking branch 'origin/main' into cj/dbcrypt_redux_2
  • Loading branch information
@johnstcn
johnstcn committedSep 7, 2023
commit3a92a7ddd2aec09ffdae67b7f74d5a120f6f9ed9
4 changes: 2 additions & 2 deletionsdocs/cli/server.md
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

10 changes: 6 additions & 4 deletionsdocs/cli/server_dbcrypt.md
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

39 changes: 39 additions & 0 deletionsdocs/cli/server_dbcrypt_decrypt.md
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

34 changes: 34 additions & 0 deletionsdocs/cli/server_dbcrypt_delete.md
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

33 changes: 25 additions & 8 deletionsdocs/cli/server_dbcrypt_rotate.md
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

14 changes: 12 additions & 2 deletionsdocs/manifest.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -708,12 +708,22 @@
},
{
"title": "server dbcrypt",
"description": "Manage database encryption",
"description": "Manage database encryption.",
"path": "cli/server_dbcrypt.md"
},
{
"title": "server dbcrypt decrypt",
"description": "Decrypt a previously encrypted database.",
"path": "cli/server_dbcrypt_decrypt.md"
},
{
"title": "server dbcrypt delete",
"description": "Delete all encrypted data from the database. THIS IS A DESTRUCTIVE OPERATION.",
"path": "cli/server_dbcrypt_delete.md"
},
{
"title": "server dbcrypt rotate",
"description": "Rotate database encryption keys",
"description": "Rotate database encryption keys.",
"path": "cli/server_dbcrypt_rotate.md"
},
{
Expand Down
12 changes: 12 additions & 0 deletionssite/src/api/typesGenerated.ts
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

You are viewing a condensed version of this merge commit. You can view thefull changes here.

[8]ページ先頭

©2009-2025 Movatter.jp