Skip to content

Commit 522a939

Browse files
committed
add explicit region for s3 commands
1 parent 3d95acb commit 522a939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/latest-binaries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MINOR_VERSION="${1}"
1313

1414
# retrieve the available "VERSION/BUILD_DATE" prefixes (e.g. "1.28.1/2023-09-14")
1515
# from the binary object keys, sorted in descending semver order, and pick the first one
16-
LATEST_BINARIES=$(aws s3api list-objects-v2 --bucket amazon-eks --prefix "${MINOR_VERSION}" --query 'Contents[*].[Key]' --output text --no-sign-request | cut -d'/' -f-2 | sort -Vru | head -n1)
16+
LATEST_BINARIES=$(aws s3api list-objects-v2 --bucket amazon-eks --prefix "${MINOR_VERSION}" --query 'Contents[*].[Key]' --output text --region us-west-2 --no-sign-request | cut -d'/' -f-2 | sort -Vru | head -n1)
1717

1818
if [ "${LATEST_BINARIES}" == "None" ]; then
1919
echo >&2 "No binaries available for minor version: ${MINOR_VERSION}"

0 commit comments

Comments
 (0)