-
Notifications
You must be signed in to change notification settings - Fork 4.5k
elbv2: IPv6 only support #30256
Copy link
Copy link
Closed
Labels
@aws-cdk/aws-elasticloadbalancingv2Related to Amazon Elastic Load Balancing V2Related to Amazon Elastic Load Balancing V2effort/mediumMedium work item – several days of effortMedium work item – several days of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p2
Description
Describe the feature
Application Load Balancer launches IPv6 only support for internet clients
https://aws.amazon.com/about-aws/whats-new/2024/05/application-load-balancer-ipv6-internet-clients/
Let's include this support in CDK.
Use Case
For customers using ALB for IPv6 only.
Proposed Solution
Add a new enum with some checks as only ALB support that.
aws-cdk/packages/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.ts
Lines 4 to 14 in 8bac15d
| export enum IpAddressType { | |
| /** | |
| * Allocate IPv4 addresses | |
| */ | |
| IPV4 = 'ipv4', | |
| /** | |
| * Allocate both IPv4 and IPv6 addresses | |
| */ | |
| DUAL_STACK = 'dualstack', | |
| } |
Other Information
Acknowledgements
- I may be able to implement this feature request
- This feature might incur a breaking change
CDK version used
all
Environment details (OS name and version, etc.)
all
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
@aws-cdk/aws-elasticloadbalancingv2Related to Amazon Elastic Load Balancing V2Related to Amazon Elastic Load Balancing V2effort/mediumMedium work item – several days of effortMedium work item – several days of effortfeature-requestA feature should be added or improved.A feature should be added or improved.p2