项目作者: infrablocks

项目描述 :
Terraform module for building base networking in AWS
高级语言: Ruby
项目地址: git://github.com/infrablocks/terraform-aws-base-networking.git
创建时间: 2017-02-13T11:00:06Z
项目社区:https://github.com/infrablocks/terraform-aws-base-networking

开源协议:MIT License

下载


Terraform AWS Base Networking

Version
Build Pipeline
Maintainer

A Terraform module for building a base network in AWS.

The network consists of:

  • Public and private subnets for each supplied availability zone
  • A NAT gateway for each supplied availability zone for outbound Internet
    connectivity
  • Routes from the public subnets to the Internet gateway
  • Routes from the private subnets to the NAT
  • Standard tags for all resources

Diagram of infrastructure managed by this module

Usage

To use the module, include something like the following in your Terraform
configuration:

  1. module "base-network" {
  2. source = "infrablocks/base-networking/aws"
  3. version = "4.0.0"
  4. vpc_cidr = "10.0.0.0/16"
  5. region = "eu-west-2"
  6. availability_zones = ["eu-west-2a", "eu-west-2b"]
  7. component = "important-component"
  8. deployment_identifier = "production"
  9. private_zone_id = "Z3CVA9QD5NHSW3"
  10. }

See the
Terraform registry entry
for more details.

Inputs

Name Description Default Required
vpc_cidr The CIDR to use for the VPC. - Yes
region The region into which to deploy the VPC. - Yes
availability_zones The availability zones for which to add subnets. - Yes
public_subnets_offset The number of /24s to offset the public subnets in the VPC CIDR. 0 No
private_subnets_offset The number of /24s to offset the private subnets in the VPC CIDR. 0 No
component The component this network will contain. - Yes
deployment_identifier An identifier for this instantiation. - Yes
dependencies A comma separated list of components depended on my this component. [] No
include_route53_zone_association Whether or not to associate VPC with the private Route 53 zone ("yes" or "no"). "yes" No
private_zone_id The ID of the private Route 53 zone` - If include_route53_zone_association is "yes"
include_nat_gateways Whether or not to deploy NAT gateways for outbound Internet connectivity ("yes" or "no"). "yes" No

Outputs

Name Description
vpc_id The ID of the created VPC.
vpc_cidr The CIDR of the created VPC.
availability_zones The availability zones in which subnets were created.
number_of_availability_zones The number of populated availability zones available.
public_subnet_ids The IDs of the public subnets.
public_subnet_cidrs The CIDRs of the public subnets.
public_route_table_ids The IDs of the public route tables.
private_subnet_ids The IDs of the private subnets.
private_subnet_cidrs The CIDRs of the private subnets.
private_route_table_ids The IDs of the private route tables.
nat_public_ips The EIPs attached to the NAT gateways.
internet_gateway_id The ID of the created IGW.

Compatibility

This module is compatible with Terraform versions greater than or equal to
Terraform 1.0 and Terraform AWS provider versions greater than or equal to 3.27.

Required Permissions

  • ec2:DescribeVpcs
  • ec2:DescribeAddresses
  • ec2:DescribeVpcAttribute
  • ec2:DescribeVpcClassicLink
  • ec2:DescribeVpcClassicLinkDnsSupport
  • ec2:DescribeRouteTables
  • ec2:DescribeSecurityGroups
  • ec2:DescribeNetworkAcls
  • ec2:DescribeSubnets
  • ec2:DescribeInternetGateways
  • ec2:DescribeNatGateways
  • ec2:ModifyVpcAttribute
  • ec2:AllocateAddress
  • ec2:ReleaseAddress
  • ec2:AssociateRouteTable
  • ec2:DisassociateRouteTable
  • ec2:AttachInternetGateway
  • ec2:DetachInternetGateway
  • ec2:DeleteInternetGateway
  • ec2:CreateRoute
  • ec2:CreateNatGateway
  • ec2:CreateVpc
  • ec2:CreateTags
  • ec2:CreateSubnet
  • ec2:CreateRouteTable
  • ec2:CreateInternetGateway
  • ec2:DeleteRoute
  • ec2:DeleteRouteTable
  • ec2:DeleteSubnet
  • ec2:DeleteNatGateway
  • ec2:DeleteVpc
  • s3:ListBucket
  • s3:GetObject
  • s3:GetObjectTagging
  • s3:DeleteObject
  • route53:AssociateVPCWithHostedZone
  • route53:DisassociateVPCFromHostedZone
  • route53:GetChange
  • route53:GetHostedZone

Development

Machine Requirements

In order for the build to run correctly, a few tools will need to be installed
on your development machine:

  • Ruby (3.1)
  • Bundler
  • git
  • git-crypt
  • gnupg
  • direnv
  • aws-vault

Mac OS X Setup

Installing the required tools is best managed by homebrew.

To install homebrew:

  1. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Then, to install the required tools:

  1. # ruby
  2. brew install rbenv
  3. brew install ruby-build
  4. echo 'eval "$(rbenv init - bash)"' >> ~/.bash_profile
  5. echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc
  6. eval "$(rbenv init -)"
  7. rbenv install 3.1.1
  8. rbenv rehash
  9. rbenv local 3.1.1
  10. gem install bundler
  11. # git, git-crypt, gnupg
  12. brew install git
  13. brew install git-crypt
  14. brew install gnupg
  15. # aws-vault
  16. brew cask install
  17. # direnv
  18. brew install direnv
  19. echo "$(direnv hook bash)" >> ~/.bash_profile
  20. echo "$(direnv hook zsh)" >> ~/.zshrc
  21. eval "$(direnv hook $SHELL)"
  22. direnv allow <repository-directory>

Running the build

Running the build requires an AWS account and AWS credentials. You are free to
configure credentials however you like as long as an access key ID and secret
access key are available. These instructions utilise
aws-vault which makes credential
management easy and secure.

To run the full build, including unit and integration tests, execute:

  1. aws-vault exec <profile> -- ./go

To run the unit tests, execute:

  1. aws-vault exec <profile> -- ./go test:unit

To run the integration tests, execute:

  1. aws-vault exec <profile> -- ./go test:integration

To provision the module prerequisites:

  1. aws-vault exec <profile> -- ./go deployment:prerequisites:provision[<deployment_identifier>]

To provision the module contents:

  1. aws-vault exec <profile> -- ./go deployment:root:provision[<deployment_identifier>]

To destroy the module contents:

  1. aws-vault exec <profile> -- ./go deployment:root:destroy[<deployment_identifier>]

To destroy the module prerequisites:

  1. aws-vault exec <profile> -- ./go deployment:prerequisites:destroy[<deployment_identifier>]

Configuration parameters can be overridden via environment variables. For
example, to run the unit tests with a seed of "testing", execute:

  1. SEED=testing aws-vault exec <profile> -- ./go test:unit

When a seed is provided via an environment variable, infrastructure will not be
destroyed at the end of test execution. This can be useful during development
to avoid lengthy provision and destroy cycles.

To subsequently destroy unit test infrastructure for a given seed:

  1. FORCE_DESTROY=yes SEED=testing aws-vault exec <profile> -- ./go test:unit

Common Tasks

Generating an SSH key pair

To generate an SSH key pair:

  1. ssh-keygen -m PEM -t rsa -b 4096 -C integration-test@example.com -N '' -f config/secrets/keys/bastion/ssh

Generating a self-signed certificate

To generate a self signed certificate:

  1. openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365

To decrypt the resulting key:

  1. openssl rsa -in key.pem -out ssl.key

Managing CircleCI keys

To encrypt a GPG key for use by CircleCI:

  1. openssl aes-256-cbc \
  2. -e \
  3. -md sha1 \
  4. -in ./config/secrets/ci/gpg.private \
  5. -out ./.circleci/gpg.private.enc \
  6. -k "<passphrase>"

To check decryption is working correctly:

  1. openssl aes-256-cbc \
  2. -d \
  3. -md sha1 \
  4. -in ./.circleci/gpg.private.enc \
  5. -k "<passphrase>"

Contributing

Bug reports and pull requests are welcome on GitHub at
https://github.com/infrablocks/terraform-aws-base-networking. This project is
intended to be a safe, welcoming space for collaboration, and contributors are
expected to adhere to the
Contributor Covenant code of conduct.

License

The library is available as open source under the terms of the
MIT License.