Islam Salem
04/25/2022, 10:56 PMeu-central-1
but unfortunately I found that SES email receiving feature (ReceiptRuleSet) isn’t enabled on this region. so I’ve tried set up another stack on a different region eu-west-1
so I’m looking for help if anyone has done something similar to have stacks on different regions on the same app. I don’t know how should I run the sst start
command as it’s by default deploying all stacks to the main region.
I also found this thread https://serverless-stack.slack.com/archives/C01JG3B20RY/p1643119080123400
and wanted to follow up on it, if there’re any updates as mentioned it would be discussed internally @JayIslam Salem
04/27/2022, 9:46 AMFrank
Frank
Frank
Frank
new StackA(app, "stack-a");
// Temporarily change app's stage
const appStage = app.stage;
app.stage = "eu-west-1";
new StackB(app, "stack-b");
app.stage = appStage;
new StackC(app, "stack-b");
Frank
Islam Salem
04/28/2022, 7:40 PM