Skip to content

Commit a73b26b

Browse files
committed
feat: Fully switch to GuCDK instead of YAML.
1 parent 6a7408a commit a73b26b

File tree

6 files changed

+1774
-2047
lines changed

6 files changed

+1774
-2047
lines changed

cdk/bin/cdk.ts

+12
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ new IdentityGateway(app, 'IdentityGateway-euwest-1-PROD', {
77
stack: 'identity',
88
stage: 'PROD',
99
env: { region: 'eu-west-1' },
10+
baseUri: `profile.theguardian.com`,
11+
defaultReturnUri: `https://theguardian.com`,
12+
scaling: {
13+
maximumInstances: 12,
14+
minimumInstances: 3,
15+
},
1016
});
1117
new IdentityGateway(app, 'IdentityGateway-euwest-1-CODE', {
1218
stack: 'identity',
1319
stage: 'CODE',
1420
env: { region: 'eu-west-1' },
21+
baseUri: `profile.code.dev-theguardian.com`,
22+
defaultReturnUri: `https://m.code.dev-theguardian.com`,
23+
scaling: {
24+
minimumInstances: 1,
25+
maximumInstances: 2,
26+
},
1527
});

0 commit comments

Comments
 (0)