-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
I believe this block of code from infra/regions.ts:
const providers = {} as Record<string, aws.Provider | undefined>;
for (const region of regions) {
if (region === "us-east-1") {
providers[region] = undefined;
}
providers[region] = new aws.Provider("Aws_" + region, {
region: region as any,
});
}should be changed to:
const providers = {} as Record<string, aws.Provider | undefined>;
for (const region of regions) {
if (region === "us-east-1") {
providers[region] = undefined;
} else {
providers[region] = new aws.Provider("Aws_" + region, {
region: region as any,
});
}
}otherwise i'ts just being overwritten?
Metadata
Metadata
Assignees
Labels
No labels