chore: add vault image to test

This commit is contained in:
Richard Simpson
2019-09-20 15:37:40 -05:00
parent 5c5889eabd
commit d34df4c9d5
2 changed files with 35 additions and 1 deletions

12
quicktest.js Normal file
View File

@@ -0,0 +1,12 @@
const got = require('got');
(async () => {
const result = await got(`localhost:8200/v1/secret/config`, {
method: 'POST',
headers: {
'X-Vault-Token': 'testtoken'
}
});
console.log(result.body);
})();