-
-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Allow specifying additional TGW routes in attached VPCs #132
base: master
Are you sure you want to change the base?
feat: Allow specifying additional TGW routes in attached VPCs #132
Conversation
Adds parameter `tgw_additional_vpc_cidrs` to the `vpc_attachments` map that enables adding additional `aws_route` resources that send traffic across the TGW peering connection. Changes the name of the existing `aws_route` resource from `this` since there are now more than one in the state file.
NOTE: this change has the same bootstrapping problem as #111, but it works correctly when the VPC resources are configured ahead of time (or in a separate state file as we do in our terraform) |
Hi @antonbabenko could you please take a look |
Good morning. |
This PR has been automatically marked as stale because it has been open 30 days |
Hi @antonbabenko could you please take a look |
This PR has been automatically marked as stale because it has been open 30 days |
Hi |
This PR has been automatically marked as stale because it has been open 30 days |
Hi |
pinging this again. @antonbabenko were you able to look at this? Or @elkh510 is there someone else that can? |
Description
Adds parameter
tgw_additional_vpc_cidrs
to thevpc_attachments
map that enables adding additionalaws_route
resources that send traffic across the TGW VPC attachment.Changes the name of the existing
aws_route
resource fromthis
since there are now more than one in the state file.Motivation and Context
In our environment we have two CIDR blocks that need to transit from the VPC across the TGW network:
10.0.0.0/8
and172.16.0.0/12
. Unfortunately this is not possible to do with the module as it is today.With this change we can add
aws_route
entries for both CIDR blocks to our VPC route tables.Breaking Changes
This change increments the minimum required terraform version to 1.1 in order to take advantage of
moved
blocks.In order to implement this I had to add a second
aws_route
resource because the existing one is keyed only on route table ID which is no longer a unique value for route resources.Commonly accepted Terraform style rules indicate that
this
is only an acceptable resource name if it is the only one of its type in a module. Since there are now twoaws_route
resources, I changed the name of the existingthis
resource todestination_cidr
so that this style rule is still valid.While I personally feel that the overwhelming majority of module users should already be using a version equal to or greater than Terraform 1.1, if bumping this requirement is undesirable I would fine with reverting the resource rename and leaving the minimum required version as is.
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request