we have about 25 applications which have java key value properties (80 properties per app) (application configuration). and we need to import them into Consul KV store through an automated solution.
So far we are creating a json with key and base64 encoded value, and then using @import, but this is rather complex. (since our consul is running in a container, importing needs a terminal opening for docker container).
I could use HTTP put, but it takes one property at a time!
Is there any smart and efficient way ?