We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d95acb commit 522a939Copy full SHA for 522a939
hack/latest-binaries.sh
@@ -13,7 +13,7 @@ MINOR_VERSION="${1}"
13
14
# retrieve the available "VERSION/BUILD_DATE" prefixes (e.g. "1.28.1/2023-09-14")
15
# 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)
+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)
17
18
if [ "${LATEST_BINARIES}" == "None" ]; then
19
echo >&2 "No binaries available for minor version: ${MINOR_VERSION}"
0 commit comments