Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Terraform support for configuring NAT64 for public Router NAT #22116

Open
matheusaleixo-cit opened this issue Mar 28, 2025 · 2 comments · May be fixed by GoogleCloudPlatform/magic-modules#13522

Comments

@matheusaleixo-cit
Copy link

matheusaleixo-cit commented Mar 28, 2025

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 an issue is assigned to a user, that user is claiming responsibility for the issue.
  • Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.

Description

Add support for configuring public Router NAT services with NAT64 enabled, as well as support for DNS64 configuration for dns policies.
Those features are currently available for preview in the beta API.

New or Affected Resource(s)

  • google_compute_router_nat
  • google_dns_policy

Potential Terraform Configuration

resource "google_dns_policy" "example-policy" {
  name = "tf-test-example-policy-%{random_suffix}"
  description = "Test DNS64 Policy."

  enable_inbound_forwarding = false
  enable_logging = false

  dns64_config {         # <-- New field
    scope {
      all_queries = true
    }
  }

  networks {
    network_url = google_compute_network.network-1.id
  }
  networks {
    network_url = google_compute_network.network-2.id
  }
}

resource "google_compute_router_nat" "foobar" {
  name                               = "tf-test-router-nat-%{random_suffix}"
  router                             = google_compute_router.foobar.name
  region                             = google_compute_router.foobar.region
  nat_ip_allocate_option             = "AUTO_ONLY"

  source_subnetwork_ip_ranges_to_nat = "ALL_SUBNETWORKS_ALL_IP_RANGES"
  source_subnetwork_ip_ranges_to_nat64 = "ALL_IPV6_SUBNETWORKS"        # <-- New field

  log_config {
    enable = true
    filter = "ERRORS_ONLY"
  }
}

References

Compute Router API: https://cloud.google.com/compute/docs/reference/rest/beta/routers#:~:text=nats%5B%5D.sourceSubnetworkIpRangesToNat64

DNS Policy API (still does not list the dns64Config field, despite it being used in requests when using the gcloud create command and being listed in the discovery docs): https://cloud.google.com/dns/docs/reference/rest/v1beta2/policies

Docs:

b/407117084
b/407117564

@matheusaleixo-cit
Copy link
Author

Hi, I will be working on a PR for this feature in the following week, I'm just creating this issue to keep things organized.

@SirGitsalot
Copy link
Collaborator

Thanks for the contribution! I'll assign the GitHub issue to you and forward on to the service teams for visibility.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment