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

aws-ec2: Support Cross-Region VPC Private Links #32785

Open
2 tasks
The-Zona-Zoo opened this issue Jan 7, 2025 · 1 comment
Open
2 tasks

aws-ec2: Support Cross-Region VPC Private Links #32785

The-Zona-Zoo opened this issue Jan 7, 2025 · 1 comment
Labels
@aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed. p2

Comments

@The-Zona-Zoo
Copy link

Describe the feature

Support cross-region VPC Private Link connectivity as outlined in: https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-cross-region-connectivity-for-aws-privatelink/

Use Case

Currently, the only way I am aware of to use this newly announced feature is by manually setting up or modifying resources in the console.

Proposed Solution

This would likely require 2 changes:

  1. When creating a VPC Endpoint Service, allow specifying supported regions, perhaps always including the endpoint service region by default:
new VpcEndpointService(scope, 'id', {
   ...otherProperties,
   supportedRegions: ['us-east-1', 'us-west-2', ...] // perhaps the service region should always be added even if it's not specified
});
  1. When creating an Interface VPC Endpoint, allow specifying which region the endpoint service exists in:
new InterfaceVpcEndpoint(scope, 'id', {
   ...otherProperties,
   service: {
      ...otherServiceProperties,
      region: 'us-east-1' // defaults to the endpoint region if not specified (current behavior)
   }
});

Other Information

This request will almost certainly be blocked until CloudFormation support is added. I have submitted a related issue to the cloud formation roadmap.

Acknowledgements

  • I may be able to implement this feature request
  • This feature might incur a breaking change

CDK version used

latest

Environment details (OS name and version, etc.)

n/a

@The-Zona-Zoo The-Zona-Zoo added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels Jan 7, 2025
@github-actions github-actions bot added the @aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud label Jan 7, 2025
@khushail khushail added investigating This issue is being investigated and/or work is in progress to resolve the issue. and removed needs-triage This issue or PR still needs to be triaged. labels Jan 7, 2025
@khushail khushail self-assigned this Jan 7, 2025
@khushail khushail added p2 needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed. and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. labels Jan 7, 2025
@khushail
Copy link
Contributor

khushail commented Jan 8, 2025

@The-Zona-Zoo thanks for submitting this feature request and filing issue with Cloudformation as well.

@khushail khushail added the effort/medium Medium work item – several days of effort label Jan 8, 2025
@khushail khushail removed their assignment Jan 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-ec2 Related to Amazon Elastic Compute Cloud effort/medium Medium work item – several days of effort feature-request A feature should be added or improved. needs-cfn This issue is waiting on changes to CloudFormation before it can be addressed. p2
Projects
None yet
Development

No branches or pull requests

2 participants