-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Milestone
Description
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment. If the issue is assigned to the "modular-magician" user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If the issue is assigned to a user, that user is claiming responsibility for the issue. If the issue is assigned to "hashibot", a community member has claimed the issue already.
Description
Add support for IP Version in the google compute address resource so we can reserved IPv6 instead of IPv4 when do not need a v4. This will be very usefull to stop using v4.
The idea is to match the --ip-version of gcloud
New or Affected Resource(s)
- google_compute_address
Potential Terraform Configuration
resource "google_compute_address" "static_ip" {
name = "static-ip"
project = "my-project"
ip_version = "IPV6"
}
shuuji3, andreisavu and thokra-nav