mirror of https://github.com/grafana/grafana.git
25 lines
327 B
SQL
Executable File
25 lines
327 B
SQL
Executable File
SELECT
|
|
"guid",
|
|
"name",
|
|
"namespace",
|
|
"annotations",
|
|
"labels",
|
|
"created",
|
|
"created_by",
|
|
"updated",
|
|
"updated_by",
|
|
"description",
|
|
"keeper",
|
|
"decrypters",
|
|
"ref",
|
|
"external_id",
|
|
"active",
|
|
"version"
|
|
FROM
|
|
"secret_secure_value"
|
|
WHERE
|
|
"namespace" = 'ns' AND
|
|
"name" = 'name' AND
|
|
"active" = true
|
|
;
|