Closed Jarodiv closed 11 months ago
This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 10 days
"Keep alive" post
This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 10 days
"Keep alive" post
This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 10 days
"Keep alive" post
This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 10 days
"Keep alive" post
This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 10 days
"Keep alive" post
This issue has been resolved in version 2.12.1 :tada:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Description
ℹ️ This is a copy of #101 which was closed automatically while still valid.
The module generally supports the use of IPv6. But when adding routes to the tables provided via
vpc_attachments[].vpc_route_table_ids
, it always tries to assign thevpc_attachments[].tgw_destination_cidr
to the IPv4aws_route.destination_cidr_block
argument. Correct would be usingaws_route.destination_cidr_block
for IPv4 andaws_route.destination_ipv6_cidr_block
for IPv6.Versions
Reproduction Code [Required]
Everything it needs is to configure IPv6 and provide VPC Route Tables:
Expected behavior
The code runs and IPv6 routes are being created.
Actual behavior
The code would fails because of issue https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/issues/100, but else it would fail, trying to assign an IPv6 CIDR to the IPv4
aws_route.destination_cidr_block
instead of using its IPv6 counterpartaws_route.destination_ipv6_cidr_block
.