diff options
-rw-r--r-- | .changeset/empty-ants-crash.md | 5 | ||||
-rw-r--r-- | packages/db/src/core/cli/commands/link/index.ts | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.changeset/empty-ants-crash.md b/.changeset/empty-ants-crash.md new file mode 100644 index 000000000..f7fd7fced --- /dev/null +++ b/.changeset/empty-ants-crash.md @@ -0,0 +1,5 @@ +--- +"@astrojs/db": patch +--- + +Add all regions to the link command diff --git a/packages/db/src/core/cli/commands/link/index.ts b/packages/db/src/core/cli/commands/link/index.ts index 905d2095e..c65f6ef65 100644 --- a/packages/db/src/core/cli/commands/link/index.ts +++ b/packages/db/src/core/cli/commands/link/index.ts @@ -238,6 +238,10 @@ export async function promptNewProjectRegion(): Promise<string> { choices: [ { title: 'North America (East)', value: 'NorthAmericaEast' }, { title: 'North America (West)', value: 'NorthAmericaWest' }, + { title: 'Europe (Amsterdam)', value: 'EuropeCentral' }, + { title: 'South America (Brazil)', value: 'SouthAmericaEast' }, + { title: 'Asia (India)', value: 'AsiaSouth' }, + { title: 'Asia (Japan)', value: 'AsiaNorthEast' }, ], initial: 0, }); |