Skip to content

Us east 1 region is being overwritten #39

@kldeb

Description

@kldeb

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions