Skip to content

Commit

Permalink
fix: add local region and ondemand deployment env (#43)
Browse files Browse the repository at this point in the history
* fix: add local region and ondemand deployment env
  • Loading branch information
ShaunParsons authored Feb 23, 2022
1 parent ed85e88 commit 9029078
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/talis-cdk-stack/talis-deployment-environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export enum TalisDeploymentEnvironment {
BUILD = "build",
STAGING = "staging",
PRODUCTION = "production",
ONDEMAND = "ondemand",
}
7 changes: 7 additions & 0 deletions lib/talis-cdk-stack/talis-region.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
export enum TalisRegion {
CANADA = "ca-central-1",
EU = "eu-west-1",
LOCAL = "local",
}

export enum TalisShortRegion {
CANADA = "ca",
EU = "eu",
LOCAL = "local",
}

0 comments on commit 9029078

Please sign in to comment.