SecretsManager: add data key store (#107396)

* SecretsManager: Add data key store

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

* SecretsManager: Add wiring of data key store

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

---------

Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
This commit is contained in:
Dana Axinte
2025-06-30 17:17:07 +01:00
committed by GitHub
parent 2d634639a2
commit 0fccc01ebe
39 changed files with 1097 additions and 25 deletions
+14
View File
@@ -0,0 +1,14 @@
SELECT
`uid`,
`namespace`,
`label`,
`provider`,
`encrypted_data`,
`active`,
`created`,
`updated`
FROM
`secret_data_key`
WHERE `namespace` = 'ns' AND
`uid` = 'abc123'
;