We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd2234 commit 5d2fec2Copy full SHA for 5d2fec2
packages/cdk/stacks/VpcResourcesStack.ts
@@ -170,6 +170,12 @@ export class VpcResourcesStack extends Stack {
170
171
endpoint.connections.allowFrom(Peer.ipv4(this.vpc.privateSubnets[0].ipv4CidrBlock),
172
endpoint.connections.defaultPort!)
173
+
174
+ new CfnOutput(this, `PrivateInterfaceEndpoint-${name}`, {
175
+ value: endpoint.vpcEndpointId,
176
+ description: "Private interface endpoints for the VPC",
177
+ exportName: `${this.stackName}:PrivateInterfaceEndpoint-${name}`
178
+ })
179
}
180
181
private addGatewayEndpoint(name: string, awsService: InterfaceVpcEndpointAwsService): void {
0 commit comments