Closed YakDriver closed 1 week ago
Voting for Prioritization
For Submitters
This functionality has been released in v5.75.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!
Description
At the moment,
public_advertisable
is being sent to AWS when it shouldn't in certain cases. The current logic isn't checking thepublic_ip_source
so where ipv6, public scope, andpublic_ip_source = "amazon"
, it will includepublic_advertisable
😱 :Before that, pre #39600, the logic was wrong in a different way. It would include
public_advertisable
where ipv6 and thepublic_ip_source
was not"amazon"
indicating BYOIP, by either not usingpublic_ip_source
or explicitly setting"byoip"
. This would erroneously include non-public scope.The fix is to check all three things before setting
publicly_advertisable
: ipv6, public scope, and source is not Amazon.Relations
Closes #39967 Relates #39600
References
Output from Acceptance Testing