Closed Jarodiv closed 1 year 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
Cannot remove the label, so need to comment in order to prevent this issue from being closed.
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
This issue was automatically closed because of stale in 10 days
Any way to re-ope this issue? The issue still exists and the PR fixing it is still not merged
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.
This issue has been resolved in version 2.12.1 :tada:
Description
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
.