Closed
Description
Describe the bug
The minimumCapacityUnit
has a hardcoded limit of 1500 units:
This is incorrect. This is a soft limit that can be increased, see documentation:
Load Balancer Capacity Units
The following quotas are for Load Balancer Capacity Units (LCU).
Name Default Adjustable Reserved Application Load Balancer Capacity Units (LCUs) per Application Load Balancer 1500 Yes Reserved Application Load Balancer Capacity Units (LCU) per Region 0 Yes
Regression Issue
- Select this option if this issue appears to be a regression.
Last Known Working CDK Library Version
No response
Expected Behavior
The library doesn't error out when you set a higher minimumCapacityUnit
than 1500
.
Current Behavior
It errors out.
Reproduction Steps
new ApplicationLoadBalancer(this, "LoadBalancer", {
// ... params
minimumCapacityUnit: 1501
})
Possible Solution
Remove the limit
Additional Information/Context
No response
AWS CDK Library version (aws-cdk-lib)
2.191.0
AWS CDK CLI version
2.1011.0
Node.js Version
20
OS
OSX
Language
TypeScript
Language Version
No response
Other information
No response