From 9eb569362d742e898ac6c3896bb5056930e30553 Mon Sep 17 00:00:00 2001 From: Loki FastStart Date: Fri, 8 May 2026 09:00:59 +0000 Subject: [PATCH] fix: add ap-southeast-1 to bedrock_allowed list (matches CFN template) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6caf548..f82f0a2 100755 --- a/install.sh +++ b/install.sh @@ -1968,7 +1968,7 @@ pack_default_model() { build_deploy_params() { # Bedrock region: use us-east-1 by default (widest model availability, cross-region inference) # Only override if the deploy region is itself a supported Bedrock region - local bedrock_allowed="us-east-1 us-west-2 eu-west-1 eu-central-1 eu-north-1 ap-northeast-1" + local bedrock_allowed="us-east-1 us-west-2 eu-west-1 eu-central-1 eu-north-1 ap-northeast-1 ap-southeast-1" if [[ " $bedrock_allowed " == *" $DEPLOY_REGION "* ]]; then BEDROCK_REGION="$DEPLOY_REGION" else