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:
+19
@@ -0,0 +1,19 @@
|
||||
INSERT INTO "secret_data_key" (
|
||||
"uid",
|
||||
"namespace",
|
||||
"label",
|
||||
"provider",
|
||||
"encrypted_data",
|
||||
"active",
|
||||
"created",
|
||||
"updated"
|
||||
) VALUES (
|
||||
'abc123',
|
||||
'ns',
|
||||
'label',
|
||||
'provider',
|
||||
'[115 101 99 114 101 116]',
|
||||
TRUE,
|
||||
'0001-01-01 00:00:00 +0000 UTC',
|
||||
'0001-01-01 00:00:00 +0000 UTC'
|
||||
);
|
||||
Reference in New Issue
Block a user