Skip to content

elbv2: IPv6 only support #30256

@pahud

Description

@pahud

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.

export enum IpAddressType {
/**
* Allocate IPv4 addresses
*/
IPV4 = 'ipv4',
/**
* Allocate both IPv4 and IPv6 addresses
*/
DUAL_STACK = 'dualstack',
}

Other Information

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions