mirror of
https://github.com/grafana/grafana.git
synced 2025-09-29 03:53:48 +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
338 B
SQL
14 lines
338 B
SQL
INSERT INTO {{ .Ident "secret_encrypted_value" }} (
|
|
{{ .Ident "uid" }},
|
|
{{ .Ident "namespace" }},
|
|
{{ .Ident "encrypted_data" }},
|
|
{{ .Ident "created" }},
|
|
{{ .Ident "updated" }}
|
|
) VALUES (
|
|
{{ .Arg .Row.UID }},
|
|
{{ .Arg .Row.Namespace }},
|
|
{{ .Arg .Row.EncryptedData }},
|
|
{{ .Arg .Row.Created }},
|
|
{{ .Arg .Row.Updated }}
|
|
);
|