Cross-Region Transit Gateway routing setup #31
-
Hi everyone, From the network setup documentation, it's not 100% clear, how are we supposed to set up additional region. We've added a secondary transit gateway hub, added the Is there a step we missed? This is how our secondary region network stack looks like:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
The tricky part with transit gateway is making sure every account has every route in both directions necessary. That means your network account will have a lot of routes. What you have there will connect the It's quite tedious, and I recommend using the AWS Reachability Analyzer to check if you missed any. It's almost always the back route that's missing. That said, I have recently refactored all of these components for an engagement. For that use case, we needed a very complex, unique network that required many special cases. However, I think this new component setup is much easier to understand. With this new design, we have a component for each part of the network -- one for the VPC subnet routes, one for the transit gateway route table routes, one for the transit gateway attachment, and one for transit gateway itself. We don't quite have the public documentation full available for it yet, but I pushed up what we do have so far. Please feel free to take a look and let me know if you have any questions!
|
Beta Was this translation helpful? Give feedback.
This whole issue should've been named "morons who can't read manuals" 😑 😑
What was missing for us, originally - is
peered_region: true
setting for alt region spokes.Also, the guide doesn't mention this instruction:
So, for posterity - to add another region - follow this guide, carefully - https://docs.cloudposse.com/components/library/aws/tgw/#alternate-regions
(for som…