I am trying to write a vault secret which is a file.
PS C:\workspace> vault kv put -address=https://someserver.com -namespace=somenamespace secret/runtime/other/dev value="@test.pwd"
Key Value
--- -----
created_time 2022-08-22T06:54:50.018110723Z
custom_metadata <nil>
deletion_time n/a
destroyed false
version 15
PS C:\workspace> vault kv get -address=https://someserver.com -namespace=somenamespace secret/runtime/other/dev
======= Metadata =======
Key Value
--- -----
created_time 2022-08-22T06:54:50.018110723Z
custom_metadata <nil>
deletion_time n/a
destroyed false
version 15
== Data ==
Key Value
--- -----
:�<↕zMn�L��T2���홆j����?Н�xil܉
The file is getting stored to vault but the key is null. Is there a way to to attached any key also to it.