From 24528b2d26167082962069e4b8e37239a87182b8 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Wed, 18 Dec 2024 16:48:02 +1100 Subject: [PATCH] aws: change region Spot instance interrupt frequency got very high on us-east-1. Try ap-southeast-4 which currently has low interrupt rate and good pricing. Signed-off-by: Gerwin Klein --- aws-proofs/steps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-proofs/steps.sh b/aws-proofs/steps.sh index 85672f2b..fcb8b616 100755 --- a/aws-proofs/steps.sh +++ b/aws-proofs/steps.sh @@ -22,7 +22,7 @@ echo "::group::AWS" # fail on any error set -e -aws configure set default.region us-east-1 +aws configure set default.region ap-southeast-4 aws configure set default.output json echo "Starting AWS instance..."