terraform-aws-vpc
terraform-aws-vpc copied to clipboard
AWS VPC Module
This PR cherry-picks from #68 after i reattempted based prior changes (#69).
change routes from bool / lists to accept either string which is a prefix list or a cidr
This is an enhancement that adds a prefix value to the tags for (almost) all resources. I think it improves the readability, especially when there are more than 1 VPCs...
This is a declaration of the planned breaking changes with release 2.x. The release date is not known yet: - removing several outputs as noted in outputs.tf - `route_to_transit_gateway` will...
should be: https://github.com/aws-ia/terraform-aws-vpc/blob/ef781be85958c50bb90630c4e916516cbd573827/contributing.md
add prefix list to each subnet type
```terraform module "vpc" { source = "aws-ia/vpc/aws" version = ">= 1.0.0" name = "tgw" cidr_block = "10.0.0.0/16" az_count = 2 subnets = { public = { netmask = 24 nat_gateway_configuration...
Attempting to unblock dependency chain for IPAM / PLS / tgw resources by removing the preview resource. IPAM is now unblocked (no longer requires `-target` but PLS/tgw still do.