Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions infra/regions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ 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,
});
}
providers[region] = new aws.Provider("Aws_" + region, {
region: region as any,
});
}

export function multiregion<T>(
Expand Down