File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments