Hi,
I am a newbie in Vault. We had a requirement to upload an Apache Avro file to vault and it should be referenced by a key. The value should be the avro file/file content . Is it possible to do so without doing any base64 encoding as its not allowed in our environment?
First – Vault is not a storage system. There is a 1024kb limit (default) per secret max. You can override this but I would highly discourage storing non-secrets in Vault and using Vault as a storage mechanism. It can do it but you’re adding headaches for the future and severely limiting the speed of Vault by doing so.
To answer your question, you can store JSON objects in Vault but again I would advise against it – it’s safer to encode it.