knock-knock

command module
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Feb 14, 2020 License: MIT Imports: 12 Imported by: 0

README

knock-knock

Utility for obtaining database credentials from Consul and Vault.

Getting started

Installation

Download and install using go get:

go get -u github.com/romantomjak/knock-knock

or grab a binary from releases section!

Configuration

Configuration by default is read from ~/.knock-knock.conf. It is based on the INI file format which is rendered by Go template.

[myservice]
host = {{ key "services/myservice/db/host" }}
port = 5432
username = {{ with secret "secret/services/myservice/db" }}{{ .Data.username }}{{ end }}
password = {{ with secret "secret/services/myservice/db" }}{{ .Data.password }}{{ end }}
dbname = {{ key "services/myservice/db/database" }}

Sections are your service names. They appear on a line by itself, in square brackets ([ and ]). key retrieves values from Consul and likewise secret is for retrieving secrets from Vault.

Vault K/V version 2 backend

To access a versioned secret value:

password = {{ with secret "secret/services/myservice/db" }}{{ .Data.data.password }}{{ end }}

Note the nested .Data.data syntax when referencing the secret value. For more information about using the K/V v2 backend, see the Vault Documentation.

Usage

Running the application requires you to specify a service name from the configuration file:

$ knock-knock myservice
host = myexampledb.a1b2c3d4wxyz.us-west-2.rds.amazonaws.com
port = 5432
username = awsuser
password = awssecretpassword
dbname = awsdatabase

Magic! ✨

Contributing

You can contribute in many ways and not just by changing the code! If you have any ideas, just open an issue and tell me what you think.

Contributing code-wise - please fork the repository and submit a pull request.

Credits

Logo made by Ely Wahib from http://wahib.me

License

MIT

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

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