Closed erikjoh closed 8 months ago
Voting for Prioritization
Volunteering to Work on This Issue
This functionality has been released in v5.41.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.
For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!
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.
Terraform Core Version
1.7.4
AWS Provider Version
5.39.1
Affected Resource(s)
Expected Behavior
tunnel1_inside_ipv6_cidr
andtunnel2_inside_ipv6_cidr
should accept all possible cidrs withinfd00::/8
.For example
fdff:1::1337:0:0/126
is withinfd00::/8
:Actual Behavior
tunnel1_inside_ipv6_cidr
andtunnel2_inside_ipv6_cidr
only accept cidrs withinfd00::/16
.Relevant Error/Panic Output Snippet
Terraform Configuration Files
Steps to Reproduce
main.tf
file.terraform init
terraform plan
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
From the docs https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_VpnTunnelOptionsSpecification.html
And the incorrect regex validation that causes this error:
https://github.com/hashicorp/terraform-provider-aws/blob/c7c1bc3e6d88d3d47979ba38c7a44c56e6763449/internal/service/ec2/vpnsite_connection.go#L1699
Would you like to implement a fix?
Yes