Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

elbv2: IPv6 only support #30256

Open
2 tasks
pahud opened this issue May 17, 2024 · 2 comments · May be fixed by #30248
Open
2 tasks

elbv2: IPv6 only support #30256

pahud opened this issue May 17, 2024 · 2 comments · May be fixed by #30248
Labels
@aws-cdk/aws-elasticloadbalancingv2 Related to Amazon Elastic Load Balancing V2 effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. p2

Comments

@pahud
Copy link
Contributor

pahud commented May 17, 2024

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

@pahud pahud added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels May 17, 2024
@github-actions github-actions bot added the @aws-cdk/aws-elasticloadbalancingv2 Related to Amazon Elastic Load Balancing V2 label May 17, 2024
@pahud pahud added p2 effort/medium Medium work item – several days of effort @aws-cdk/aws-elasticloadbalancingv2 Related to Amazon Elastic Load Balancing V2 and removed @aws-cdk/aws-elasticloadbalancingv2 Related to Amazon Elastic Load Balancing V2 needs-triage This issue or PR still needs to be triaged. labels May 17, 2024
@go-to-k
Copy link
Contributor

go-to-k commented May 17, 2024

Thanks @pahud
I found the PR for this feature already submitted.

see: #30248

@pahud
Copy link
Contributor Author

pahud commented May 17, 2024

thank you for letting me know @go-to-k

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-elasticloadbalancingv2 Related to Amazon Elastic Load Balancing V2 effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. p2
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants