Skip to main content

Extensions to the ec2.Vpc Constructs

Project description

Raindancers Network Construct Library

The raindancers network package contains constructs that construct to provide additional network capablitys, particually for using in an enterprise network.

All of the methods that work with ec2.Vpc, work with Evpc. Refer to the ec2.Vpc Documentation

Note: This Construct Library shoudl be considered experimental, and breaking changes are likely, untill it reaches version 1.x.x.

The authors of this construct encourage and welcome PR's. Please raise an issue..

import { Evpc } from 'raindancers-cdk.raindancers-network';

VPC

Many projects need a Virtual Private Cloud network. This can be provided by creating an instance of EVpc :

const shineyEvpc = new Evpc(this, 'EnterpriseVPC');

Using IPAM address Pool for Addressing in Cidr

Creating a vpc that gets its Ip Address allocation from an IPAM pool, requires providing a netmask and ipamPoolId. Only one of ipamPoolId or cidr is allowed. The underlying resource that creates a VPC natively consumes IPAM.

const shineyEpvc = new Evpc(this, 'EnterpriseVPC', {
	ipamPoolId: 'pool-00000122344',
	netmaskLength: 24
})

Centralised Flow Logs and Athena Querys.

This construct will create a flow log, that is written to a centralised flow log bucket. The construct expects to find the bucket name in they key flowlogbucket in cdk.json. (This typically is in the log-archive acount, set up by Control Tower). This requires that the buckets policy allows access. To DISABLE this feature, set the disableFLowLog to false. By default the flow log will aggregate flow logs at a 10minute internal. To enable aggregation on a 1 minute interval, set the oneMinuteFlowLogs property to true.

The construct will also create a set of Athena querys and glue jobs that will provide an easy way to query the flow logs from within the account that the vpc is created.

const shineyEpvc = new Evpc(this, 'EnterpriseVPC', {
	disableFlowlog: false,
	oneMinuteFlowLogs: true
})

Subnets

The construct creates subnets in the same way that the ec2.Vpc construct does. in order to connect the VPC to a cloudWAN, the construct requires that a subnet group called 'linknets' is created. This is where the attachments for cloudwan will be created.

const shiney = new Evpc(this, 'Shineyvpc', {
	r53InternalZoneName: 'thing.domain.com'
	ipamPoolId: 'ip-pool-id',
	subnetConfiguration: [
		{
			name: 'linknet',
			subnetType: ec2.SubnetType.PRIVATE_ISOLATED,
			cidrMask: 28
		},
	]
	}
)

Attaching a VPC to cloud wan.

To attach a vpc to a cloudwan, use the attachToCloudWan method, for example to connect to a core network 'AcmeCore' and segment 'AppsProd'; The attachments to cloudwan will be made in the linknets subnets

const shineyVpc = new Evpc: Evpc;
shineyVpc.attachToCloudWan('AcmeCore', 'AppsProd')

This method returns the attachmentId, which is used in the routing methods.

Attaching a VPC to a TransitGateway in Appliance Mode.

(very beta and potentially buggy) TODO: Write doc's

Adding Routes to Cloudwan attached VPC's

A number of convience methods are provided to add routes to the cloudwan; For example to add a default route (0/0) in all privatesubnets

shineyVpc.addRouteForPrivateSubnetstoCloudwan('0.0.0.0/0', attachmentId)

Similar method exisits for PublicSubnets, TransitGateways Instances and Firewalls.

Internal Route53 Zones

A internal Route53 Zone can be created and associated with the Vpc, by specifying the r53InternalZoneName property

const shineyEpvc = new Evpc(this, 'EnterpriseVPC', {
	r53InternalZoneName: 'internal.somedomain.cloud',
})

DNS Methods

To do. associateVPCZonewithCentralVPC associateSharedRoute53ResolverRules

IPAM

This package contains constructs for integrating with Amazon IP Address Manager. While the IPAM Service is GA and provides a very useful service, only a handful of services natively support ingesting a IPAM allocated address ( ie, VPC ).

For futher infomation on Amazon IPAM, see the IPAM Documentation

Using IPAM for IPsec VPN tunnel addresses

The Cidr ranges for IPSec VPN Tunnels must comply to several constraints.

  • they must be a /30
  • they must be subnets of 169.254.0.0/16
  • they must not conflict with the reserved subnets ( see docs above )

The following example demonstrates how the constructs can be used to create an address Pool and suitable allocations, that met these criteria


const tunnelIPAMPool = new kapua_ipam.IpsecTunnelPool(this, 'ipampool', {
	ipamScopeId: 'ipam-scope-00112233445566778',
	cidr: '169.254.100.0/27',
	description: 'Addressing for IPSec Tunnels between ap-southeast-2 and on prem',
	name: 'ToOnPremVPNTunnels'
})


var assignedCidrs: string[] = []

const tunnelAllocation = new GetTunnelAddressPair(this, `${name}tunneladdress`,{
	ipamPoolId: tunnelIPAMPool.attrIpamPoolId,
	name: name
})

assignedCidrs = tunnelAllocation.assignedCidrPair

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

raindancers-network.raindancers-cdk-0.0.21.tar.gz (170.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file raindancers-network.raindancers-cdk-0.0.21.tar.gz.

File metadata

File hashes

Hashes for raindancers-network.raindancers-cdk-0.0.21.tar.gz
Algorithm Hash digest
SHA256 96bc336398b3213e9c140fadefc1614a940864d2ed49946de3ff25decebec26e
MD5 3b277068bf1f2986020dbdd52ef5d0e5
BLAKE2b-256 a6ba6ea8f9e7221a1375f92b85d40db3a44bc252602aa2a2e84b350c994a5ccf

See more details on using hashes here.

File details

Details for the file raindancers_network.raindancers_cdk-0.0.21-py3-none-any.whl.

File metadata

File hashes

Hashes for raindancers_network.raindancers_cdk-0.0.21-py3-none-any.whl
Algorithm Hash digest
SHA256 4c89db328d36dd8c8e5ba7f4f69e2af906f784b368a0c1e2d6ed7afd04e3b4ad
MD5 d88e150daa20018a2fe83ab601e91613
BLAKE2b-256 6b8df253e3d1cf1740fb1c11a2e79652f890322fd50f40c80ac6a0ca39af93b9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page