@gradientedge/cdk-utils 8.156.1 → 8.157.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,6 +21,7 @@ class Ipv6Vpc extends aws_ec2_1.Vpc {
21
21
  const cfnSubnet = subnet.node.defaultChild;
22
22
  cfnSubnet.ipv6CidrBlock = aws_cdk_lib_1.Fn.select(index, subnetIpv6CidrBlocks);
23
23
  cfnSubnet.assignIpv6AddressOnCreation = true;
24
+ cfnSubnet.ipv6Native = true;
24
25
  });
25
26
  const addDefaultIpv6Routes = (subnets, gatewayId, routerType) => subnets.forEach(subnet => subnet.addRoute(`${id}-default-route`, {
26
27
  destinationIpv6CidrBlock: '::/0',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.156.1",
3
+ "version": "8.157.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -30,6 +30,7 @@ export class Ipv6Vpc extends Vpc {
30
30
  const cfnSubnet = subnet.node.defaultChild as CfnSubnet
31
31
  cfnSubnet.ipv6CidrBlock = Fn.select(index, subnetIpv6CidrBlocks)
32
32
  cfnSubnet.assignIpv6AddressOnCreation = true
33
+ cfnSubnet.ipv6Native = true
33
34
  })
34
35
 
35
36
  const addDefaultIpv6Routes = (subnets: ISubnet[], gatewayId: string, routerType: RouterType) =>