-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathecr-get-authorization-token
executable file
·32 lines (26 loc) · 1.07 KB
/
ecr-get-authorization-token
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
#!/usr/bin/env bash
# vim: set tabstop=2 softtabstop=2 shiftwidth=2 expandtab:
# Get credentials key for ECR from AWS without using the full blown aws client
set -e
if [ -n "${BASH_SOURCE[0]}" ]; then
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
else
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
fi
source "$SCRIPT_DIR/aws-functions"
export src=""
export method="POST"
export service="ecr"
export host="${service}.${AWS_REGION}.amazonaws.com"
export x_amz_target="AmazonEC2ContainerRegistry_V20150921.GetAuthorizationToken"
export payload="{}"
curl --tcp-nodelay -qsfL -X ${method} --data "${payload}" \
"https://${host}/${src}" \
-H "Authorization: AWS4-HMAC-SHA256 Credential=${AWS_ACCESS_KEY_ID?}/${date_scope}/${AWS_REGION}/${service}/aws4_request,SignedHeaders=$(all_signed_headers),Signature=$(signature)" \
-H "Accept-Encoding: identity" \
-H "Content-Type: application/x-amz-json-1.1" \
-H "Date: ${date_header}" \
-H "x-amz-content-sha256: $(payload_hash)" \
-H "x-amz-date: ${iso_timestamp}" \
-H "x-amz-target: ${x_amz_target}" \
$*