@ttoss/cloud-vpc 0.1.0 → 0.1.1

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.
package/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CloudFormationTemplate } from '@ttoss/cloudformation';
2
+ export { CloudFormationTemplate } from '@ttoss/cloudformation';
2
3
 
3
4
  declare const createVpcTemplate: ({ cidrBlock, createPublicSubnets, }: {
4
5
  cidrBlock: string;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CloudFormationTemplate } from '@ttoss/cloudformation';
2
+ export { CloudFormationTemplate } from '@ttoss/cloudformation';
2
3
 
3
4
  declare const createVpcTemplate: ({ cidrBlock, createPublicSubnets, }: {
4
5
  cidrBlock: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/cloud-vpc",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Deploy a VPC with public and private subnets",
5
5
  "author": "ttoss",
6
6
  "contributors": [
@@ -29,8 +29,8 @@
29
29
  "@types/jest": "^29.5.12",
30
30
  "jest": "^29.7.0",
31
31
  "tsup": "^8.1.0",
32
- "@ttoss/config": "^1.32.6",
33
- "@ttoss/test-utils": "^2.1.10"
32
+ "@ttoss/test-utils": "^2.1.10",
33
+ "@ttoss/config": "^1.32.6"
34
34
  },
35
35
  "keywords": [
36
36
  "aws",
package/src/index.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import type { CloudFormationTemplate } from '@ttoss/cloudformation';
2
2
 
3
+ export type { CloudFormationTemplate };
4
+
3
5
  const NUMBER_OF_AVAILABILITY_ZONES = 3;
4
6
 
5
7
  const PUBLIC_ROUTER_TABLE_LOGICAL_ID = 'PublicRouteTable';