-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pinning in readme and examples
- Loading branch information
John Titus
committed
Jan 22, 2020
1 parent
4f8933e
commit a403880
Showing
6 changed files
with
80 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,83 @@ | ||
# aws-terraform-vpc_basenetwork | ||
# aws-terraform-vpc\_basenetwork | ||
|
||
This module sets up basic network components for an account in a specific region. Optionally it will setup a basic VPN gateway and VPC flow logs. | ||
|
||
## Basic Usage | ||
|
||
``` | ||
```HCL | ||
module "vpc" { | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.0.10" | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.12.0" | ||
vpc_name = "MyVPC" | ||
} | ||
``` | ||
|
||
Full working references are available at [examples](examples) | ||
Full working references are available at [examples](examples) | ||
## Default Resources | ||
|
||
By default only `vpc_name` is required to be set. Unless changed `aws_region` defaults to `us-west-2` and will need to be updated for other regions. `source` will also need to be declared depending on where the module lives. Given default settings the following resources are created: | ||
|
||
- VPC Flow Logs | ||
- 2 AZs with public/private subnets from the list of 3 static CIDRs ranges available for each as defaults | ||
- Public/private subnets with the count related to custom_azs if defined or region AZs automatically calculated by Terraform otherwise | ||
- NAT Gateways will be created in each AZ's first public subnet | ||
- EIPs will be created in all public subnets for NAT gateways to use | ||
- VPC Flow Logs | ||
- 2 AZs with public/private subnets from the list of 3 static CIDRs ranges available for each as defaults | ||
- Public/private subnets with the count related to custom\_azs if defined or region AZs automatically calculated by Terraform otherwise | ||
- NAT Gateways will be created in each AZ's first public subnet | ||
- EIPs will be created in all public subnets for NAT gateways to use | ||
- Route Tables, including routes to NAT gateways if applicable | ||
|
||
## Terraform 0.12 upgrade | ||
|
||
Several changes were required while adding terraform 0.12 compatibility. The following changes should be | ||
made when upgrading from a previous release to version 0.12.0 or higher. | ||
|
||
### Module variables | ||
|
||
The following module variables were updated to better meet current Rackspace style guides: | ||
|
||
- `custom_tags` -> `tags` | ||
- `vpc_name` -> `name` | ||
|
||
## Providers | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| aws | >= 2.1.0 | | ||
|
||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|:----:|:-----:|:-----:| | ||
| az\_count | Number of AZs to utilize for the subnets | string | `"2"` | no | | ||
| build\_flow\_logs | Whether or not to build flow log components in cloud watch logs | string | `"false"` | no | | ||
| build\_igw | Whether or not to build an internet gateway. If disabled, no public subnets or route tables, internet gateway, or NAT Gateways will be created. | string | `"true"` | no | | ||
| build\_nat\_gateways | Whether or not to build a NAT gateway per AZ. if `build_igw` is set to false, this value is ignored. | string | `"true"` | no | | ||
| build\_s3\_flow\_logs | Whether or not to build flow log components in s3 | string | `"false"` | no | | ||
| build\_vpn | Whether or not to build a VPN gateway | string | `"false"` | no | | ||
| cidr\_range | CIDR range for the VPC | string | `"172.18.0.0/19"` | no | | ||
| custom\_azs | A list of AZs that VPC resources will reside in | list | `<list>` | no | | ||
| default\_tenancy | Default tenancy for instances. Either multi-tenant (default) or single-tenant (dedicated) | string | `"default"` | no | | ||
| domain\_name | Custom domain name for the VPC | string | `""` | no | | ||
| domain\_name\_servers | Array of custom domain name servers | list | `<list>` | no | | ||
| enable\_dns\_hostnames | Whether or not to enable DNS hostnames for the VPC | string | `"true"` | no | | ||
| enable\_dns\_support | Whether or not to enable DNS support for the VPC | string | `"true"` | no | | ||
| environment | Application environment for which this network is being created. e.g. Development/Production | string | `"Development"` | no | | ||
| logging\_bucket\_access\_control | Define ACL for Bucket from one of the [canned ACL](https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl): private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control, log-delivery-write | string | `"bucket-owner-full-control"` | no | | ||
| logging\_bucket\_encryption | Enable default bucket encryption. i.e. AES256 or aws:kms | string | `"AES256"` | no | | ||
| logging\_bucket\_encryption\_kms\_mster\_key | The AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse_algorithm as aws:kms. | string | `""` | no | | ||
| logging\_bucket\_force\_destroy | Whether all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable. ie. true | string | `"false"` | no | | ||
| logging\_bucket\_name | Bucket name to store s3 flow logs. If empty, to create random bucket name. In conjuction with build_s3_flow_logs | string | `""` | no | | ||
| logging\_bucket\_prefix | The prefix for the location in the S3 bucket. If you don't specify a prefix, the access logs are stored in the root of the bucket. | string | `""` | no | | ||
| logging\_bucket\_retention | The number of days to retain load balancer logs. 0 to ratain forever. | string | `"14"` | no | | ||
| name | Name for the VPC and related resources | string | n/a | yes | | ||
| private\_cidr\_ranges | An array of CIDR ranges to use for private subnets | list | `<list>` | no | | ||
| private\_subnet\_names | Text that will be included in generated name for private subnets. Given the default value of `["Private"]`, subnet names in the form \"<vpc_name>-Private<count+1>\", e.g. \"MyVpc-Public2\" will be produced. Otherwise, given a list of names with length the same as the value of `az_count`, the first `az_count` subnets will be named using the first string in the list, the second `az_count` subnets will be named using the second string, and so on. | list | `<list>` | no | | ||
| private\_subnet\_tags | A list of maps containing tags to be applied to private subnets. List should either be the same length as the number of AZs to apply different tags per set of subnets, or a length of 1 to apply the same tags across all private subnets. | list | `<list>` | no | | ||
| private\_subnets\_per\_az | Number of private subnets to create in each AZ. NOTE: This value, when multiplied by the value of `az_count`, should not exceed the length of the `private_cidr_ranges` list! | string | `"1"` | no | | ||
| public\_cidr\_ranges | An array of CIDR ranges to use for public subnets | list | `<list>` | no | | ||
| public\_subnet\_names | Text that will be included in generated name for public subnets. Given the default value of `["Public"]`, subnet names in the form \"<vpc_name>-Public<count+1>\", e.g. \"MyVpc-Public1\" will be produced. Otherwise, given a list of names with length the same as the value of `az_count`, the first `az_count` subnets will be named using the first string in the list, the second `az_count` subnets will be named using the second string, and so on. | list | `<list>` | no | | ||
| public\_subnet\_tags | A list of maps containing tags to be applied to public subnets. List should either be the same length as the number of AZs to apply different tags per set of subnets, or a length of 1 to apply the same tags across all public subnets. | list | `<list>` | no | | ||
| public\_subnets\_per\_az | Number of public subnets to create in each AZ. NOTE: This value, when multiplied by the value of `az_count`, should not exceed the length of the `public_cidr_ranges` list! | string | `"1"` | no | | ||
| spoke\_vpc | Whether or not the VPN gateway is a spoke of a Transit VPC | string | `"false"` | no | | ||
| tags | Optional tags to be applied on top of the base tags on all resources | map | `<map>` | no | | ||
|------|-------------|------|---------|:-----:| | ||
| az\_count | Number of AZs to utilize for the subnets | `number` | `2` | no | | ||
| build\_flow\_logs | Whether or not to build flow log components in cloud watch logs | `bool` | `false` | no | | ||
| build\_igw | Whether or not to build an internet gateway. If disabled, no public subnets or route tables, internet gateway,<br>or NAT Gateways will be created. | `bool` | `true` | no | | ||
| build\_nat\_gateways | Whether or not to build a NAT gateway per AZ. if `build_igw` is set to false, this value is ignored. | `bool` | `true` | no | | ||
| build\_s3\_flow\_logs | Whether or not to build flow log components in s3 | `bool` | `false` | no | | ||
| build\_vpn | Whether or not to build a VPN gateway | `bool` | `false` | no | | ||
| cidr\_range | CIDR range for the VPC | `string` | `"172.18.0.0/19"` | no | | ||
| custom\_azs | A list of AZs that VPC resources will reside in | `list(string)` | `[]` | no | | ||
| default\_tenancy | Default tenancy for instances. Either multi-tenant (default) or single-tenant (dedicated) | `string` | `"default"` | no | | ||
| domain\_name | Custom domain name for the VPC | `string` | `""` | no | | ||
| domain\_name\_servers | Array of custom domain name servers | `list(string)` | <pre>[<br> "AmazonProvidedDNS"<br>]<br></pre> | no | | ||
| enable\_dns\_hostnames | Whether or not to enable DNS hostnames for the VPC | `bool` | `true` | no | | ||
| enable\_dns\_support | Whether or not to enable DNS support for the VPC | `bool` | `true` | no | | ||
| environment | Application environment for which this network is being created. e.g. Development/Production | `string` | `"Development"` | no | | ||
| logging\_bucket\_access\_control | Define ACL for Bucket from one of the [canned ACL](https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl): private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control, log-delivery-write | `string` | `"bucket-owner-full-control"` | no | | ||
| logging\_bucket\_encryption | Enable default bucket encryption. i.e. AES256 or aws:kms | `string` | `"AES256"` | no | | ||
| logging\_bucket\_encryption\_kms\_mster\_key | The AWS KMS master key ID used for the SSE-KMS encryption. This can only be used when you set the value of sse\_algorithm as aws:kms. | `string` | `""` | no | | ||
| logging\_bucket\_force\_destroy | Whether all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable. ie. true | `bool` | `false` | no | | ||
| logging\_bucket\_name | Bucket name to store s3 flow logs. If empty, to create random bucket name. In conjuction with build\_s3\_flow\_logs | `string` | `""` | no | | ||
| logging\_bucket\_prefix | The prefix for the location in the S3 bucket. If you don't specify a prefix, the access logs are stored in the root of the bucket. | `string` | `""` | no | | ||
| logging\_bucket\_retention | The number of days to retain load balancer logs. 0 to ratain forever. | `number` | `14` | no | | ||
| name | Name prefix for the VPC and related resources | `string` | n/a | yes | | ||
| private\_cidr\_ranges | An array of CIDR ranges to use for private subnets | `list(string)` | <pre>[<br> "172.18.16.0/22",<br> "172.18.20.0/22",<br> "172.18.24.0/22"<br>]<br></pre> | no | | ||
| private\_subnet\_names | Text that will be included in generated name for private subnets. Given the default value of `["Private"]`, subnet<br>names in the form \"<vpc\_name>-Private<count+1>\", e.g. \"MyVpc-Public2\" will be produced. Otherwise, given a<br>list of names with length the same as the value of `az_count`, the first `az_count` subnets will be named using<br>the first string in the list, the second `az_count` subnets will be named using the second string, and so on. | `list(string)` | <pre>[<br> "Private"<br>]<br></pre> | no | | ||
| private\_subnet\_tags | A list of maps containing tags to be applied to private subnets. List should either be the same length as the number of AZs to apply different tags per set of subnets, or a length of 1 to apply the same tags across all private subnets. | `list(map(string))` | <pre>[<br> {}<br>]<br></pre> | no | | ||
| private\_subnets\_per\_az | Number of private subnets to create in each AZ. NOTE: This value, when multiplied by the value of `az_count`,<br>should not exceed the length of the `private_cidr_ranges` list! | `number` | `1` | no | | ||
| public\_cidr\_ranges | An array of CIDR ranges to use for public subnets | `list(string)` | <pre>[<br> "172.18.0.0/22",<br> "172.18.4.0/22",<br> "172.18.8.0/22"<br>]<br></pre> | no | | ||
| public\_subnet\_names | Text that will be included in generated name for public subnets. Given the default value of `["Public"]`, subnet<br>names in the form \"<vpc\_name>-Public<count+1>\", e.g. \"MyVpc-Public1\" will be produced. Otherwise, given a<br>list of names with length the same as the value of `az_count`, the first `az_count` subnets will be named using<br>the first string in the list, the second `az_count` subnets will be named using the second string, and so on. | `list(string)` | <pre>[<br> "Public"<br>]<br></pre> | no | | ||
| public\_subnet\_tags | A list of maps containing tags to be applied to public subnets. List should either be the same length as the number of AZs to apply different tags per set of subnets, or a length of 1 to apply the same tags across all public subnets. | `list(map(string))` | <pre>[<br> {}<br>]<br></pre> | no | | ||
| public\_subnets\_per\_az | Number of public subnets to create in each AZ. NOTE: This value, when multiplied by the value of `az_count`,<br>should not exceed the length of the `public_cidr_ranges` list! | `number` | `1` | no | | ||
| spoke\_vpc | Whether or not the VPN gateway is a spoke of a Transit VPC | `bool` | `false` | no | | ||
| tags | Optional tags to be applied on top of the base tags on all resources | `map(string)` | `{}` | no | | ||
|
||
## Outputs | ||
|
||
|
@@ -76,3 +94,4 @@ By default only `vpc_name` is required to be set. Unless changed `aws_region` de | |
| public\_subnets | The IDs of the public subnets | | ||
| vpc\_id | The ID of the VPC | | ||
| vpn\_gateway | The ID of the VPN gateway if one was created | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ provider "aws" { | |
} | ||
|
||
module "vpc" { | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.0.10" | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.12.0" | ||
|
||
name = "MyVPC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ provider "aws" { | |
} | ||
|
||
module "vpc" { | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.0.10" | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.12.0" | ||
|
||
name = "MyVPC" | ||
custom_azs = ["us-west-2a", "us-west-2b"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ provider "aws" { | |
} | ||
|
||
module "vpc" { | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.0.10" | ||
source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.12.0" | ||
|
||
name = "MyVPC" | ||
build_vpn = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
* | ||
*## Basic Usage | ||
* | ||
*``` | ||
*```HCL | ||
*module "vpc" { | ||
* source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.0.10" | ||
* source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-vpc_basenetwork//?ref=v0.12.0" | ||
* | ||
* vpc_name = "MyVPC" | ||
*} | ||
|
@@ -24,7 +24,19 @@ | |
* - NAT Gateways will be created in each AZ's first public subnet | ||
* - EIPs will be created in all public subnets for NAT gateways to use | ||
* - Route Tables, including routes to NAT gateways if applicable | ||
*/ | ||
* | ||
*## Terraform 0.12 upgrade | ||
* | ||
*Several changes were required while adding terraform 0.12 compatibility. The following changes should be | ||
*made when upgrading from a previous release to version 0.12.0 or higher. | ||
* | ||
*### Module variables | ||
* | ||
*The following module variables were updated to better meet current Rackspace style guides: | ||
* | ||
*- `custom_tags` -> `tags` | ||
*- `vpc_name` -> `name` | ||
*/ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ module "vpc" { | |
source = "../../module" | ||
|
||
name = "Test1VPC" | ||
build_igw = "false" | ||
build_igw = false | ||
} |