-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Toward #1373: respect auto-allocated subnets in vpcEndpoints
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,7 +145,7 @@ export class Vpc extends schema.Vpc<VpcData> { | |
privateDnsEnabled: spec.privateDnsEnabled, | ||
routeTableIds: spec.routeTableIds, | ||
This comment has been minimized.
Sorry, something went wrong. |
||
securityGroupIds: spec.securityGroupIds, | ||
subnetIds: spec.subnetIds, | ||
subnetIds: subnets.map(s => s.id), | ||
This comment has been minimized.
Sorry, something went wrong.
t0yv0
Author
Member
|
||
tags: spec.tags, | ||
vpcEndpointType: spec.vpcEndpointType, | ||
vpcId: vpc.id, | ||
|
Possibly routeTableIds need to be edited too.