Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 3.58 KB

README.md

File metadata and controls

55 lines (40 loc) · 3.58 KB

vpc

AWS CloudFormation script that creates a VPC, Internet Gateway and NAT Gateway.

The VPC may contain 3 public subnets, and/or a selectable number of private subnets (0-6).

If public and private subnets are selected, then the private subnets have access to the internet via NAT Gateway. By default, only a single NAT Gateway will be created, and the private subnets share a single route table to it. However, if MultipleNATGateways is set to true, then 3 NAT Gateways will be created (one in each public subnet), along with 3 route tables. The private subnets are associated with the relevant route table such that the public/private subnets are in the same Availability Zone.

Each public subnet has 58 IP addresses available, while each private subnet has 4091 IP addresses available.

By default, Flow Logs are disabled, but these can be enabled selectively for the VPC, the public subnets, the private subnets or all resources. The retention of the logs can be specified, and in addition, whether or not the logs should be removed when the VPC stack is deleted can be specified (by default, the LogGroups are not deleted).

Arguments

Argument Description
CidrAddress First 2 elements of CIDR block, which is extended to be X.Y.0.0/16
CreatePublicSubnet Whether a public subnet should be created (with IG & NAT)
EnableDnsHostnames Whether EC2 instances will have DNS hostnames applied
EnableDnsSupport Whether or not DNS is supported
EnableFlowLogs Whether or not Flow Logs should be created
FlowLogCoverage If enabled, to which resources Flow Logs should be attached
FlowLogDeletionPolicy If enabled, whether LogStreams/Groups are removed when the stack is deleted
FlowLogRetention If enabled, the retention period for the Flow Logs
FlowLogTrafficType If enabled, the type of traffic to be logged in the Flow Logs
InstanceTenancy Type of EC2 instance tenancy
MultipleNATGateways If true, then 3 NAT Gateways are created
PrivateSubnetCount The number of private subnets to be created (0-6 can be selected)

Outputs

Output Description
CidrBlock The full CIDR block of the VPC
PrivateSubnetRouteTable The route table(s) associated with each of the private subnets
PrivateSubnets The list of private subnets (if any created)
PublicSubnetRouteTable The route table associated with the public subnet
PublicSubnets The public subnets
VPC The reference to the VPC

The route tables and VPC are returned to allow subsequent VPC Peering.

The subnets are returned to allow flow logs to be attached, and for use in Autoscaling Groups and Lambda VPC associations.

Licence

This project is released under the MIT license. See LICENSE for details.