This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
generated from actions/container-toolkit-action
-
Notifications
You must be signed in to change notification settings - Fork 15
/
entrypoint.sh
executable file
·108 lines (90 loc) · 4.19 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/bash
# Conjur Secret Retrieval for GitHub Action conjur-action
main() {
create_pem
conjur_authn
# Secrets Example: db/sqlusername | sql_username; db/sql_password
array_secrets
set_secrets
}
urlencode() {
# urlencode <string>
old_lc_collate=$LC_COLLATE
LC_COLLATE=C
local length="${#1}"
for (( i = 0; i < length; i++ )); do
local c="${1:i:1}"
case $c in
[a-zA-Z0-9.~_-]) printf "$c" ;;
' ') printf "%%20" ;;
*) printf '%%%02X' "'$c" ;;
esac
done
LC_COLLATE=$old_lc_collate
}
create_pem() {
# Create conjur_account.pem for valid SSL
echo "$INPUT_CERTIFICATE" > conjur_"$INPUT_ACCOUNT".pem
}
conjur_authn() {
if [[ -n "$INPUT_AUTHN_ID" ]]; then
echo "::debug Authenticate via Authn-JWT"
JWT_TOKEN=$(curl -H "Authorization:bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL" | jq -r .value )
if [[ -n "$INPUT_CERTIFICATE" ]]; then
echo "::debug Authenticating with certificate"
token=$(curl --cacert "conjur_$INPUT_ACCOUNT.pem" --request POST "$INPUT_URL/authn-jwt/$INPUT_AUTHN_ID/$INPUT_ACCOUNT/authenticate" --header "Content-Type: application/x-www-form-urlencoded" --header "Accept-Encoding: base64" --data-urlencode "jwt=$JWT_TOKEN")
else
echo "::debug Authenticating without certificate"
token=$(curl --request POST "$INPUT_URL/authn-jwt/$INPUT_AUTHN_ID/$INPUT_ACCOUNT/authenticate" --header 'Content-Type: application/x-www-form-urlencoded' --header "Accept-Encoding: base64" --data-urlencode "jwt=$JWT_TOKEN")
fi
else
echo "::debug Authenticate using Host ID & API Key"
# URL-encode Host ID for future use
hostId=$(urlencode "$INPUT_HOST_ID")
if [[ -n "$INPUT_CERTIFICATE" ]]; then
# Authenticate and receive session token from Conjur - encode Base64
echo "::debug Authenticating with certificate"
token=$(curl --cacert "conjur_$INPUT_ACCOUNT.pem" --data "$INPUT_API_KEY" "$INPUT_URL/authn/$INPUT_ACCOUNT/$hostId/authenticate" --header "Content-Type: application/x-www-form-urlencoded" --header "Accept-Encoding: base64")
else
# Authenticate and receive session token from Conjur - encode Base64
echo "::debug Authenticating without certificate"
token=$(curl --request POST --data "$INPUT_API_KEY" "$INPUT_URL/authn/$INPUT_ACCOUNT/$hostId/authenticate" --header "Content-Type: application/x-www-form-urlencoded" --header "Accept-Encoding: base64")
fi
fi
}
array_secrets() {
IFS=';'
read -ra SECRETS <<< "$INPUT_SECRETS" # [0]=db/sqlusername | sql_username [1]=db/sql_password
}
set_secrets() {
for secret in "${SECRETS[@]}"; do
IFS='|'
read -ra METADATA <<< "$secret" # [0]=db/sqlusername [1]=sql_username
if [[ "${#METADATA[@]}" == 2 ]]; then
secretId=$(urlencode "${METADATA[0]}")
envVar=${METADATA[1]^^}
else
secretId=${METADATA[0]}
IFS='/'
read -ra SPLITSECRET <<< "$secretId" # [0]=db [1]=sql_password
arrLength=${#SPLITSECRET[@]} # Get array length
lastIndex=$((arrLength-1)) # Subtract one for last index
envVar=${SPLITSECRET[$lastIndex]^^}
secretId=$(urlencode "${METADATA[0]}")
fi
if [[ -n "$INPUT_CERTIFICATE" ]]; then
echo "::debug Retrieving secret with certificate"
secretVal=$(curl --cacert "conjur_$INPUT_ACCOUNT.pem" -H "Authorization: Token token=\"$token\"" "$INPUT_URL/secrets/$INPUT_ACCOUNT/variable/$secretId")
else
echo "::debug Retrieving secret without certificate"
secretVal=$(curl -H "Authorization: Token token=\"$token\"" "$INPUT_URL/secrets/$INPUT_ACCOUNT/variable/$secretId")
fi
if [[ "${secretVal}" == "Malformed authorization token" ]]; then
echo "::error::Malformed authorization token. Please check your Conjur account, username, and API key. If using authn-jwt, check your Host ID annotations are correct."
exit 1
fi
echo ::add-mask::"${secretVal}" # Masks the value in all logs & output
echo "${envVar}=${secretVal}" >> "${GITHUB_ENV}" # Set environment variable
done
}
main "$@"