Skip to content

Commit cc0b005

Browse files
authored
fix(route53-targets): InterfaceVpcEndpointTarget incorrectly accepts an imported endpoint (aws#21523)
The `InterfaceVpcEndpointTarget` currently accepts an imported endpoint `IInterfaceVpcEndpoint`, but the actual implementation requires access to the `CfnVPCEndpoint` resource which is only available from the `InterfaceVpcEndpoint`. This appears as breaking, but I don't think it should be considered as breaking since you can currently _only_ pass a `InterfaceVpcEndpoint`. I thought about adding support for `IInterfaceVpcEndpoint`, but that would require updating the `fromxxx` method to take the route53 zone and the DNS name for the endpoint. If you need to know those values to use this construct then you might as well just create a normal Route53 record. closes aws#10432 ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f2cf031 commit cc0b005

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

allowed-breaking-changes.txt

+4
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ removed:@aws-cdk/aws-lambda-event-sources.SelfManagedKafkaEventSourceProps.onFai
140140
# removed kubernetes version from EKS
141141
removed:@aws-cdk/aws-eks.KubernetesVersion.V1_22
142142

143+
# change the type of vpcEndpoint from ec2.IInterfaceVpcEndpoint to ec2.InterfaceVpcEndpoint.
144+
# even though it accepted IInterfaceVpcEndpoint, the actual implementation required a
145+
# managed construct ec2.InterfaceVpcEndpoint
146+
incompatible-argument:@aws-cdk/aws-route53-targets.InterfaceVpcEndpointTarget.<initializer>
143147
# changed the type of requiresBootstrapStackVersion to Optional<number> (formerly number)
144148
# to allow the CLI to skip validating the bootstrap stack when the stack is not needed
145149
changed-type:@aws-cdk/cx-api.AssetManifestArtifact.requiresBootstrapStackVersion

packages/@aws-cdk/aws-route53-targets/lib/interface-vpc-endpoint-target.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as cdk from '@aws-cdk/core';
77
*/
88
export class InterfaceVpcEndpointTarget implements route53.IAliasRecordTarget {
99
private readonly cfnVpcEndpoint: ec2.CfnVPCEndpoint;
10-
constructor(private readonly vpcEndpoint: ec2.IInterfaceVpcEndpoint) {
10+
constructor(private readonly vpcEndpoint: ec2.InterfaceVpcEndpoint) {
1111
this.cfnVpcEndpoint = this.vpcEndpoint.node.findChild('Resource') as ec2.CfnVPCEndpoint;
1212
}
1313

0 commit comments

Comments
 (0)