Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions integration-tests/iac/lib/integration-tests-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ class PythonStack extends cdk.NestedStack {
restApiName: `${props.prefix}apigw-error-500-${suffix}`,
handler: fn,
proxy: true,
// REGIONAL avoids the account-wide 120-per-region quota on EDGE-type
// APIs, which every concurrently open PR's integration-test stack
// otherwise eats into (17 REST APIs per stack).
endpointConfiguration: { types: [apigateway.EndpointType.REGIONAL] },
});
}
}
Expand Down
4 changes: 4 additions & 0 deletions integration-tests/iac/lib/node-tracing-scenarios-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,10 @@ export class NodeTracingScenariosStack extends cdk.NestedStack {
restApiName: `${prefix}tracing-test-api-${runtimeName}`,
handler: apiGatewayConsumer,
proxy: true,
// REGIONAL avoids the account-wide 120-per-region quota on EDGE-type
// APIs, which every concurrently open PR's integration-test stack
// otherwise eats into.
endpointConfiguration: { types: [apigateway.EndpointType.REGIONAL] },
});

const apiGatewayProducer = new lambda.Function(this, `ApiGatewayProducerLambda-${runtimeName}`, {
Expand Down
4 changes: 4 additions & 0 deletions integration-tests/iac/lib/python-tracing-scenarios-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export class PythonTracingScenariosStack extends cdk.NestedStack {
restApiName: `${prefix}tracing-test-api-${runtimeName}`,
handler: apiGatewayConsumer,
proxy: true,
// REGIONAL avoids the account-wide 120-per-region quota on EDGE-type
// APIs, which every concurrently open PR's integration-test stack
// otherwise eats into.
endpointConfiguration: { types: [apigateway.EndpointType.REGIONAL] },
});

const apiGatewayProducer = new lambda.Function(this, `ApiGatewayProducerLambda-${runtimeName}`, {
Expand Down
Loading