SecretsManager: add secure value store (#106708)
* SecretsManager: add secure value model and sql templates 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: Leandro Deveikis <leandro.deveikis@gmail.com> Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com> * SecretsManager: secure value rest layer to use store 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: Leandro Deveikis <leandro.deveikis@gmail.com> Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com> * SecretsManager: temporary add actor prefix to decrypters * Remove list securevalue by namefor now --------- Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com> Co-authored-by: Leandro Deveikis <leandro.deveikis@gmail.com> Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com>
This commit is contained in:
Vendored
Executable
+27
@@ -0,0 +1,27 @@
|
||||
INSERT INTO "secret_secure_value" (
|
||||
"guid",
|
||||
"name",
|
||||
"namespace",
|
||||
"annotations",
|
||||
"labels",
|
||||
"created",
|
||||
"created_by",
|
||||
"updated",
|
||||
"updated_by",
|
||||
"status_phase",
|
||||
"description",
|
||||
"external_id"
|
||||
) VALUES (
|
||||
'abc',
|
||||
'name',
|
||||
'ns',
|
||||
'{"x":"XXXX"}',
|
||||
'{"a":"AAA", "b", "BBBB"}',
|
||||
1234,
|
||||
'user:ryan',
|
||||
5678,
|
||||
'user:cameron',
|
||||
'creating',
|
||||
'description',
|
||||
'extId'
|
||||
);
|
||||
Reference in New Issue
Block a user