-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to sign arbitrary files using the key stored in Secrets Ma…
…nager
- Loading branch information
Rico Huijbers
committed
May 31, 2018
1 parent
b85fcbe
commit 8b071e5
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
if [[ "${1:-}" == "" ]]; then | ||
echo "Usage: sign.sh FILE" >&2 | ||
exit 1 | ||
fi | ||
|
||
|
||
tmpdir=$(mktemp -d) | ||
trap "shred $tmpdir/* && rm -rf $tmpdir" EXIT | ||
|
||
SECRET=CDK/SigningKey | ||
|
||
# Use secrets manager to obtain the key and passphrase into a JSON file | ||
echo "Retrieving key..." >&2 | ||
aws --region us-east-1 secretsmanager get-secret-value --secret-id "$SECRET" --output text --query SecretString > $tmpdir/secret.txt | ||
passphrase=$(python -c "import json; print(json.load(file('$tmpdir/secret.txt'))['Passphrase'])") | ||
|
||
echo "Importing key..." >&2 | ||
gpg --homedir $tmpdir --import <(python -c "import json; print(json.load(file('$tmpdir/secret.txt'))['PrivateKey'])") | ||
|
||
echo "Signing $1..." >&2 | ||
echo $passphrase | gpg \ | ||
--homedir $tmpdir \ | ||
--local-user [email protected] \ | ||
--batch --yes \ | ||
--passphrase-fd 0 \ | ||
--output $1.sig \ | ||
--detach-sign $1 | ||
|
||
echo "Done!" >&2 |