keywhiz

A system for distributing and managing secrets

Github星跟踪图

Keywhiz

license
maven
build

Keywhiz is a system for distributing and managing secrets.
For more information, see the website.

Our Protecting infrastructure secrets with Keywhiz blog post is worth
reading, as it provides some useful context.

Develop

Keywhiz requires Java 11 and MySQL 5.7 or higher.

See CONTRIBUTING for details on submitting patches.

Build Keywhiz:

mvn install

Run Keywhiz:

java -jar server/target/keywhiz-server-*-shaded.jar [COMMAND] [OPTIONS]

Useful commands to get started are migrate, add-user and server. Use with
--help for a list of all available commands. Use with [COMMAND] --help to
get help on a particular command.

For example, to run Keywhiz with a mysql database in development mode:

SERVER_JAR="server/target/keywhiz-server-*-shaded.jar"
KEYWHIZ_CONFIG="server/target/classes/keywhiz-development.yaml"

# Initialize dev database
java -jar $SERVER_JAR migrate $KEYWHIZ_CONFIG

# Add an administrative user
java -jar $SERVER_JAR add-user $KEYWHIZ_CONFIG

# Run server
java -jar $SERVER_JAR server $KEYWHIZ_CONFIG

To connect to a running Keywhiz instance, you will need to use the CLI.

An example helper shell script that wraps the keywhiz-cli and sets some default parameters:

#!/bin/sh

# Set the path to a compiled, shaded keywhiz-cli JAR file
KEYWHIZ_CLI_JAR="/path/to/keywhiz-cli-shaded.jar"
KEYWHIZ_SERVER_URL="https://$(hostname):4444"

# Use these flags if you want to specify a non-standard CA trust store
TRUSTSTORE="-Djavax.net.ssl.trustStore=/path/to/ca-bundle.jceks"
TRUSTTYPE="-Djavax.net.ssl.trustStoreType=JCEKS"

java "$TRUSTSTORE" "$TRUSTTYPE" -jar "$KEYWHIZ_CLI_JAR" -U "$KEYWHIZ_SERVER_URL" "$@"

Keywhiz uses jOOQ to talk to its database.

If you made changes to the database model and want to regenerate sources:

mvn install -pl model/ -Pgenerate-jooq-sources

We recommend IntelliJ IDEA for development.

Clients & API

Square also maintains a Keywhiz client implementation called Keysync.

Docker

We ship a Dockerfile for building a Docker container for Keywhiz.
Please see the Dockerfile for extra instructions.

License

Keywhiz is under the Apache 2.0 license. See the LICENSE file for details.

主要指标

概览
名称与所有者square/keywhiz
主编程语言Java
编程语言Java (语言数: 5)
平台
许可证Apache License 2.0
所有者活动
创建于2015-03-25 13:31:39
推送于2023-09-18 18:01:03
最后一次提交2023-09-18 14:01:02
发布数20
最新版本名称v0.11.0 (发布于 2022-09-27 17:27:20)
第一版名称v0.7.0 (发布于 2015-03-31 15:27:22)
用户参与
星数2.6k
关注者数59
派生数215
提交数1.9k
已启用问题?
问题数111
打开的问题数35
拉请求数836
打开的拉请求数11
关闭的拉请求数266
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?