2018-02-15 20:34:47 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Here is a script to deploy cert to hashicorp vault
|
|
|
|
# (https://www.vaultproject.io/)
|
2019-10-05 13:06:58 +00:00
|
|
|
#
|
2018-02-15 20:34:47 +00:00
|
|
|
# it requires the vault binary to be available in PATH, and the following
|
|
|
|
# environment variables:
|
2019-10-05 13:06:58 +00:00
|
|
|
#
|
2018-02-15 20:34:47 +00:00
|
|
|
# VAULT_PREFIX - this contains the prefix path in vault
|
|
|
|
# VAULT_ADDR - vault requires this to find your vault server
|
2022-12-23 08:34:18 +00:00
|
|
|
# VAULT_SAVE_TOKEN - set to anything if you want to save the token
|
|
|
|
# VAULT_RENEW_TOKEN - set to anything if you want to renew the token to default TTL before deploying
|
2018-02-15 20:34:47 +00:00
|
|
|
#
|
|
|
|
# additionally, you need to ensure that VAULT_TOKEN is avialable or
|
|
|
|
# `vault auth` has applied the appropriate authorization for the vault binary
|
|
|
|
# to access the vault server
|
|
|
|
|
|
|
|
#returns 0 means success, otherwise error.
|
|
|
|
|
|
|
|
######## Public functions #####################
|
|
|
|
|
|
|
|
#domain keyfile certfile cafile fullchain
|
2018-02-20 14:11:45 +00:00
|
|
|
vault_cli_deploy() {
|
2018-02-15 20:34:47 +00:00
|
|
|
|
|
|
|
_cdomain="$1"
|
|
|
|
_ckey="$2"
|
|
|
|
_ccert="$3"
|
|
|
|
_cca="$4"
|
|
|
|
_cfullchain="$5"
|
|
|
|
|
|
|
|
_debug _cdomain "$_cdomain"
|
|
|
|
_debug _ckey "$_ckey"
|
|
|
|
_debug _ccert "$_ccert"
|
|
|
|
_debug _cca "$_cca"
|
|
|
|
_debug _cfullchain "$_cfullchain"
|
|
|
|
|
|
|
|
# validate required env vars
|
2022-12-23 08:34:18 +00:00
|
|
|
_getdeployconf VAULT_PREFIX
|
2018-02-16 14:01:26 +00:00
|
|
|
if [ -z "$VAULT_PREFIX" ]; then
|
2018-02-15 20:34:47 +00:00
|
|
|
_err "VAULT_PREFIX needs to be defined (contains prefix path in vault)"
|
|
|
|
return 1
|
|
|
|
fi
|
2022-12-23 08:34:18 +00:00
|
|
|
_savedeployconf VAULT_PREFIX "$VAULT_PREFIX"
|
2018-02-15 20:34:47 +00:00
|
|
|
|
2022-12-23 08:34:18 +00:00
|
|
|
_getdeployconf VAULT_ADDR
|
2018-02-16 14:01:26 +00:00
|
|
|
if [ -z "$VAULT_ADDR" ]; then
|
2018-02-15 20:34:47 +00:00
|
|
|
_err "VAULT_ADDR needs to be defined (contains vault connection address)"
|
|
|
|
return 1
|
|
|
|
fi
|
2022-12-23 08:34:18 +00:00
|
|
|
_savedeployconf VAULT_ADDR "$VAULT_ADDR"
|
|
|
|
|
|
|
|
_getdeployconf VAULT_SAVE_TOKEN
|
|
|
|
_savedeployconf VAULT_SAVE_TOKEN "$VAULT_SAVE_TOKEN"
|
|
|
|
|
|
|
|
_getdeployconf VAULT_RENEW_TOKEN
|
|
|
|
_savedeployconf VAULT_RENEW_TOKEN "$VAULT_RENEW_TOKEN"
|
|
|
|
|
|
|
|
_getdeployconf VAULT_TOKEN
|
|
|
|
if [ -z "$VAULT_TOKEN" ]; then
|
|
|
|
_err "VAULT_TOKEN needs to be defined"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if [ -n "$VAULT_SAVE_TOKEN" ]; then
|
|
|
|
_savedeployconf VAULT_TOKEN "$VAULT_TOKEN"
|
|
|
|
fi
|
2018-02-15 20:34:47 +00:00
|
|
|
|
2022-12-23 11:32:06 +00:00
|
|
|
_migratedeployconf FABIO VAULT_FABIO_MODE
|
|
|
|
|
2020-07-16 04:13:15 +00:00
|
|
|
VAULT_CMD=$(command -v vault)
|
2018-02-16 14:19:47 +00:00
|
|
|
if [ ! $? ]; then
|
2018-02-15 20:34:47 +00:00
|
|
|
_err "cannot find vault binary!"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2022-12-23 08:34:18 +00:00
|
|
|
if [ -n "$VAULT_RENEW_TOKEN" ]; then
|
|
|
|
_info "Renew the token to default TTL"
|
|
|
|
if ! $VAULT_CMD token renew; then
|
|
|
|
_err "Failed to renew the token"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-12-23 11:32:06 +00:00
|
|
|
if [ -n "$VAULT_FABIO_MODE" ]; then
|
2022-12-23 08:34:18 +00:00
|
|
|
_info "Writing certificate and key to $URL in Fabio mode"
|
2021-03-29 13:10:14 +00:00
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}" cert=@"$_cfullchain" key=@"$_ckey" || return 1
|
2018-12-10 13:55:21 +00:00
|
|
|
else
|
2022-12-23 08:34:18 +00:00
|
|
|
_info "Writing certificate to $URL/cert.pem"
|
2021-03-29 13:10:14 +00:00
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}/cert.pem" value=@"$_ccert" || return 1
|
2022-12-23 08:34:18 +00:00
|
|
|
_info "Writing key to $URL/cert.key"
|
2021-03-29 13:10:14 +00:00
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}/cert.key" value=@"$_ckey" || return 1
|
2022-12-23 08:34:18 +00:00
|
|
|
_info "Writing CA certificate to $URL/ca.pem"
|
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}/ca.pem" value=@"$_cca" || return 1
|
|
|
|
_info "Writing full-chain certificate to $URL/fullchain.pem"
|
2021-03-29 13:10:14 +00:00
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}/fullchain.pem" value=@"$_cfullchain" || return 1
|
2022-12-23 08:34:18 +00:00
|
|
|
|
|
|
|
# To make it compatible with the wrong ca path `chain.pem` which was used in former versions
|
|
|
|
if $VAULT_CMD kv get "${VAULT_PREFIX}/${_cdomain}/chain.pem" >/dev/null; then
|
|
|
|
_err "The CA certificate has moved from chain.pem to ca.pem, if you don't depend on chain.pem anymore, you can delete it to avoid this warning"
|
|
|
|
_info "Updating CA certificate to $URL/chain.pem for backward compatibility"
|
|
|
|
$VAULT_CMD kv put "${VAULT_PREFIX}/${_cdomain}/chain.pem" value=@"$_cca" || return 1
|
|
|
|
fi
|
2018-12-10 13:55:21 +00:00
|
|
|
fi
|
2018-02-15 20:34:47 +00:00
|
|
|
|
|
|
|
}
|