Skip to content

Commit

Permalink
Bug fix for return path for DX GW propagations (#25)
Browse files Browse the repository at this point in the history
- When a propagation was configured from a VPC to a Dx GW, the return path would not be configured.  DX GW model was missing a required attribute that indicated it was attached to a Transit Gateway.
  • Loading branch information
apmclean committed Oct 5, 2023
1 parent 81f0eb7 commit 4ed82ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/direct-connect-gateway-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class DirectConnectGatewayStack extends BuilderDxGw {
super(scope, id, props);

this.name = `${props.namePrefix}-dxgw`.toLowerCase();

this.withTgw = true;
this.tgw = {
attrId: this.props.existingTransitGatewayId
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-vpc-builder-cdk",
"version": "0.2.2",
"version": "0.2.4",
"bin": {
"vpc-builder": "bin/vpc-builder.js"
},
Expand Down

0 comments on commit 4ed82ee

Please sign in to comment.