SecretsManager: keepers with secure values credentials (#106761)

* SecretsManager: keepers with secure values

Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com>

* Keepers: Refactor extract secure values remove extra helper functions

Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>

---------

Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
This commit is contained in:
Dana Axinte
2025-06-16 14:37:36 +01:00
committed by GitHub
co-authored by Matheus Macabu
parent c28523decf
commit dbe815ee68
8 changed files with 230 additions and 3 deletions
@@ -0,0 +1,9 @@
SELECT
`name`,
`keeper`
FROM
`secret_secure_value`
WHERE `namespace` = 'ns' AND
`name` IN ('a', 'b')
FOR UPDATE
;
@@ -0,0 +1,9 @@
SELECT
"name",
"keeper"
FROM
"secret_secure_value"
WHERE "namespace" = 'ns' AND
"name" IN ('a', 'b')
FOR UPDATE
;
@@ -0,0 +1,8 @@
SELECT
"name",
"keeper"
FROM
"secret_secure_value"
WHERE "namespace" = 'ns' AND
"name" IN ('a', 'b')
;