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:
@@ -0,0 +1,19 @@
|
||||
INSERT INTO {{ .Ident "secret_data_key" }} (
|
||||
{{ .Ident "uid" }},
|
||||
{{ .Ident "namespace" }},
|
||||
{{ .Ident "label" }},
|
||||
{{ .Ident "provider" }},
|
||||
{{ .Ident "encrypted_data" }},
|
||||
{{ .Ident "active" }},
|
||||
{{ .Ident "created" }},
|
||||
{{ .Ident "updated" }}
|
||||
) VALUES (
|
||||
{{ .Arg .Row.UID }},
|
||||
{{ .Arg .Row.Namespace }},
|
||||
{{ .Arg .Row.Label }},
|
||||
{{ .Arg .Row.Provider }},
|
||||
{{ .Arg .Row.EncryptedData }},
|
||||
{{ .Arg .Row.Active }},
|
||||
{{ .Arg .Row.Created }},
|
||||
{{ .Arg .Row.Updated }}
|
||||
);
|
||||
Reference in New Issue
Block a user