Ollie Camp
01/07/2022, 3:32 PMMayowa
01/07/2022, 4:18 PMOllie Camp
01/07/2022, 4:32 PMMayowa
01/07/2022, 4:46 PMMayowa
01/07/2022, 4:46 PMOllie Camp
01/07/2022, 4:48 PMMayowa
01/11/2022, 5:13 AMthdxr
01/11/2022, 2:13 PMthdxr
01/11/2022, 2:14 PMFrank
sst.Stack
construct with a different region, but you can create a cdk.Stack
. It’s not “officially” supported by SST, and we might change this down the road when we rethink the multi-region strategy for SST apps.Frank
import * as cdk from "@aws-cdk/core";
new cdk.Stack(app, "cert-stack", {
env: { region: "us-east-1" }
});
Frank
eu-west-1
and then importing it in us-east-1
. If you want to pass the Certificate ARN from this cert-stack
to other stacks in eu-west-1
, you’d need to store the ARN in an SSM parameter. And then reference the SSM parameter value in other stacks.Frank