mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 18:22:18 +08:00

* SecretsManager: add encrypted value store Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com> Co-authored-by: Leandro Deveikis <leandro.deveikis@gmail.com> Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com> Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com> * SecretsManager: wiring of encrypted value store --------- Co-authored-by: Leandro Deveikis <leandro.deveikis@gmail.com> Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com> Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com>
14 lines
187 B
SQL
Executable File
14 lines
187 B
SQL
Executable File
INSERT INTO `secret_encrypted_value` (
|
|
`uid`,
|
|
`namespace`,
|
|
`encrypted_data`,
|
|
`created`,
|
|
`updated`
|
|
) VALUES (
|
|
'abc123',
|
|
'ns',
|
|
'[115 101 99 114 101 116]',
|
|
1234,
|
|
5678
|
|
);
|