SecretsManager: Adding ability to disable all DEKs (#108444)
* Adding dek deactivation and rename list dek * disable data keys from manager * separate interface and don't use in encryption manager
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
UPDATE
|
||||
`secret_data_key`
|
||||
SET
|
||||
`active` = false,
|
||||
`updated` = '2025-01-01 00:00:00 +0000 UTC'
|
||||
WHERE `active` = true
|
||||
;
|
||||
Vendored
Executable
+7
@@ -0,0 +1,7 @@
|
||||
UPDATE
|
||||
"secret_data_key"
|
||||
SET
|
||||
"active" = false,
|
||||
"updated" = '2025-01-01 00:00:00 +0000 UTC'
|
||||
WHERE "active" = true
|
||||
;
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
UPDATE
|
||||
"secret_data_key"
|
||||
SET
|
||||
"active" = false,
|
||||
"updated" = '2025-01-01 00:00:00 +0000 UTC'
|
||||
WHERE "active" = true
|
||||
;
|
||||
Reference in New Issue
Block a user