vsh

command module
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2019 License: MIT Imports: 9 Imported by: 0

README

Status

CircleCI Go Report Card Code Climate

vsh

vsh usage

vsh is an interactive HashiCorp Vault shell which treats vault secret paths like directories. That way you can do recursive operations on the paths. Both, vault KV v1 and v2 are supported. Further, copying/moving secrets between both versions is supported.

vsh can also act as an executor in a non-interactive way (similar to bash -c "<cmd>").

Supported commands

mv <from-path> <to-path>
cp <from-path> <to-path>
rm <dir-path or filel-path>
ls <dir-path // optional>
cd <dir-path>
cat <file-path>

Unlike unix, cp and rm always have the -r flag implied, i.e., every operation works recursively on the paths.

Interactive mode

export VAULT_ADDR=http://localhost:8080
export VAULT_TOKEN=root
export VAULT_PATH=secret/  # VAULT_PATH is optional
./vsh
http://localhost:8080 /secret/> 

Note: in order to query the root / the VAULT_TOKEN should have permissions to list the available secret backends (sys/mounts/). In case you do not have those permissions you can use VAULT_PATH to set the start path and avoid queries on sys/mounts/.

Note: the given token is used for auto-completion, i.e., quite some List() queries are done with that token, even if you do not rm or mv anything. If your token has a limited number of uses, then consider using the non-interactive mode to avoid auto-completion queries.

Non-interactive mode

export VAULT_ADDR=<addr>
export VAULT_TOKEN=<token>
./vsh -c "rm secret/dir/to/remove/"

Local Development

Requirements:

  • golang v1.12.7
  • docker for integration testing
  • make for simplified commands
make compile
make integration-test

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL