Skip to content

Commit

Permalink
feat: Fully switch to GuCDK instead of YAML.
Browse files Browse the repository at this point in the history
  • Loading branch information
AshCorr committed Nov 20, 2024
1 parent 6a7408a commit 8b5a1a2
Show file tree
Hide file tree
Showing 6 changed files with 1,769 additions and 2,053 deletions.
12 changes: 12 additions & 0 deletions cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,21 @@ new IdentityGateway(app, 'IdentityGateway-euwest-1-PROD', {
stack: 'identity',
stage: 'PROD',
env: { region: 'eu-west-1' },
baseUri: `profile.theguardian.com`,
defaultReturnUri: `https://theguardian.com`,
scaling: {
maximumInstances: 12,
minimumInstances: 3,
},
});
new IdentityGateway(app, 'IdentityGateway-euwest-1-CODE', {
stack: 'identity',
stage: 'CODE',
env: { region: 'eu-west-1' },
baseUri: `profile.code.dev-theguardian.com`,
defaultReturnUri: `https://m.code.dev-theguardian.com`,
scaling: {
minimumInstances: 1,
maximumInstances: 2,
},
});
Loading

0 comments on commit 8b5a1a2

Please sign in to comment.