@ttoss/cloud-vpc
v0.1.9
Published
Deploy a VPC with public and private subnets
Downloads
45
Readme
@ttoss/cloud-vpc
This module provides a set of resources to create a VPC on AWS.
Installation
pnpm install @ttoss/cloud-vpc
Usage
import { createVpcTemplate } from '@ttoss/cloud-vpc';
const cidrBlock = '10.0.0.0/16';
const template = createVpcTemplate({
cidrBlock,
});
export default template;
API
createVpcTemplate
Creates a VPC template.
Parameters
cidrBlock: string
- The CIDR block of the VPC.createPublicSubnets: boolean
- Whether to create public subnets. Default istrue
.