Skip to content

Commit 6fd8650

Browse files
committed
redeploy
1 parent 123d24c commit 6fd8650

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Deploy CDK stack
5353
run: |
54-
cdk deploy RoutingAPIStack --require-approval never --force
54+
cdk deploy RoutingAPIStack --require-approval never
5555
env:
5656
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
5757
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

bin/stacks/routing-api-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export class RoutingAPIStack extends cdk.Stack {
199199
statement: {
200200
rateBasedStatement: {
201201
// Limit is per 5 mins, i.e. 200 requests every 5 mins
202-
limit: throttlingOverride ? parseInt(throttlingOverride) : 200,
202+
limit: throttlingOverride ? parseInt(throttlingOverride) : 600,
203203
// API is of type EDGE so is fronted by Cloudfront as a proxy.
204204
// Use the ip set in X-Forwarded-For by Cloudfront, not the regular IP
205205
// which would just resolve to Cloudfronts IP.

0 commit comments

Comments
 (0)