Sample terraform template for managed zone creation
The following is a sample terraform template for managed zone creation.
The following is a sample terraform template for managed zone creation.
resource "google_integration_connectors_managed_zone" "test_managed_zone" {
name = "test-managed-zone"
description = "tf created resource"
labels = {
intent = "example"
}
target_project = data.google_project.target_project.project_id
target_vpc = "test"
dns = google_dns_managed_zone.default.dns_name
depends_on = [google_project_iam_member.default]
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-15 UTC.