HI,
I need to insert some dummy data into vault to test our backups.
Are there any scripts or any other way to automate this?
HI,
I need to insert some dummy data into vault to test our backups.
Are there any scripts or any other way to automate this?
#!/bin/bash
counter=1
while [ $counter -le 1000 ]
do
echo $counter
vault write kv/foo$counter $counter=testX$counter
((counter++))
done