From a4406694f5511c345ce78e8177c4201142454cda Mon Sep 17 00:00:00 2001 From: Jan David Date: Tue, 16 Jan 2024 16:41:12 +0100 Subject: [PATCH] Move resources into the right region The SQS queue must be in the same region as the S3 bucket, otherwise it cannot be configured as the target for notifications. With our current Terragrunt setup, it is not possible to create resources in a different region, so we had to globally change the region that is associated with this account. --- terragrunt/accounts/crates-io-staging/account.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terragrunt/accounts/crates-io-staging/account.json b/terragrunt/accounts/crates-io-staging/account.json index 4e93e20fc..a3300d35a 100644 --- a/terragrunt/accounts/crates-io-staging/account.json +++ b/terragrunt/accounts/crates-io-staging/account.json @@ -1,6 +1,6 @@ { "aws": { "profile": "crates-io-staging", - "region": "us-east-2" + "region": "us-west-1" } }