- Notifications
You must be signed in to change notification settings - Fork0
Vault-UI — A beautiful UI to manage your Vault, written in React
License
tzahimizrahi/vault-ui
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A beautiful way to manage your Hashicorp Vault
- Easy to deploy as Web App
- Desktop version works on Mac, Linux and Windows
- Material UI Design
- Integrated JSON Editor
- Written in React
Vault-UI Desktop is available for the following operating systems:
- Windows
- MacOS
- Linux (32bit and 64bit AppImage)
Download the latest version from the release page and install/run the software
Vault-UI can be deployed as a shared web app for your organization
Docker images are automatically built using anautomated build on Docker Hub.We encourage that versioned images are used for production.
To run Vault-UI using the latest Docker image:
docker run -d \-p 8000:8000 \--name vault-ui \djenriquez/vault-ui
By default, connection and authentication parameters must be configured by clicking on the configuration cog on the login page.Using environment variables (via docker), an administrator can pre-configure those parameters.
Example command to pre-configure the Vault server URL and authentication method
docker run -d \-p 8000:8000 \-e VAULT_URL_DEFAULT=http://vault.server.org:8200 \-e VAULT_AUTH_DEFAULT=GITHUB \--name vault-ui \djenriquez/vault-ui
Supported environment variables:
PORT
Sets the port for Vault-UI to listen on. (Default 8000)CUSTOM_CA_CERT
Pass a self-signed certificate that the system should trust.NODE_TLS_REJECT_UNAUTHORIZED
Disable TLS server side validation. (ex. vault deployed with self-signed certificate). Set to0
to disable.VAULT_URL_DEFAULT
Sets the default vault endpoint.VAULT_AUTH_DEFAULT
Sets the default authentication method type. See below for supported authentication methods.VAULT_AUTH_BACKEND_PATH
Sets the default backend path. Useful when multiple backends of the same type are mounted on the vault file system.VAULT_SUPPLIED_TOKEN_HEADER
Instructs Vault-UI to attempt authentication using a token provided by the client in the specified HTTP request header.
This defaults can be overridden if the user fills out the endpoint and auth method manually.
Current supported login methods:
GITHUB
: When using theGitHub backendUSERNAMEPASSWORD
: When using theUsername & Password orRADIUS backendsLDAP
: When using theLDAP backendTOKEN
: When using theTokens backend
Current supported management of backend auth methods:
In some cases, users might want to use middleware to authenticate into Vault-UI for purposes like SSO. In this case, theVAULT_SUPPLIED_TOKEN_HEADER
may be populated with the name of the header that contains a token to be used for authentication.
A user/token accessing Vault-UI requires a basic set of capabilities in order to correctly discover and display the various mounted backends.Please make sure your user is granted a policy with at least the following permissions:
{"path": {"auth/token/lookup-self": {"capabilities": ["read" ] },"sys/capabilities-self": {"capabilities": ["update" ] },"sys/mounts": {"capabilities": ["read" ] },"sys/auth": {"capabilities": ["read" ] } }}
path "auth/token/lookup-self" { capabilities = [ "read" ]}path "sys/capabilities-self" { capabilities = [ "update" ]}path "sys/mounts" { capabilities = [ "read" ]}path "sys/auth" { capabilities = [ "read" ]}
Secrets are now managed using the graphicaljosdejong/jsoneditor JSON editor. Schema validation is enforced on policies to aid the operator in writing correct syntax.
Secrets also are accessible directly by key from a browser by navigating to the URI/secrets/<backendtype>/<mountpoint>/key
. For example, if you have a generic secret key of /hello/world/vault using thegeneric mountsecret/
, one can navigate to this directly throughhttp://vault-ui.myorg.com/secrets/secret/hello/world/vault.
By default, secrets will display as their raw JSON value represented by thedata
field in the HTTP GET response metadata. However, users can apply a "Root Key" bias to the secrets through the settings page. The "Root Key" will be used when reading, creating and updating secrets such that the value displayed in the UI is the value stored at the "Root Key". For example, if the secret atsecret/hello
is{ "value": "world" }
, setting the "Root Key" tovalue
will update the UI such that the secret will display as simply "world" instead of{ "value": "world" }
.
Policies are managed also using thejosdejong/jsoneditor JSON editor. Currently, GitHub and raw Tokens are the only supported authentication backends for associated policies.
Users have the ability to create and revoke tokens, manage token roles and list accessors. The following permissions are needed at minimum for this feature:
{"path": {"auth/token/accessors": {"capabilities": ["sudo","list" ] },"auth/token/lookup-accessor/*": {"capabilities": ["read" ] } }}
path"auth/token/accessors" {capabilities=["sudo","list" ]}path"auth/token/lookup-accessor/*" {capabilities=["read" ]}
Vault-UI supports response-wrapping of secrets ingeneric backends. Wrapping custom JSON data is also supported.
Install theyarn package manager
The command below will useDocker Composeto spin up a Vault dev server and a Vault UI server that you can loginto with username "test" and password "test":
./run-docker-compose-dev
If major changes are made, be sure to rundocker-compose build
to rebuild dependencies.
The following will spin up a Vault UI server only. It will not set upVault for you:
yarn run dev-pack&yarn start
Vault-UI is licensed under BSD 2-Clause. SeeLICENSE for the full license text.
About
Vault-UI — A beautiful UI to manage your Vault, written in React
Resources
License
Stars
Watchers
Forks
Packages0
Languages
- JavaScript97.5%
- CSS1.5%
- Other1.0%