[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-08-18。"],[[["\u003cp\u003eThis content provides a sample Terraform template for creating a managed zone.\u003c/p\u003e\n"],["\u003cp\u003eThe template is generic and needs to be adapted to specific user requirements.\u003c/p\u003e\n"],["\u003cp\u003eThe managed zone resource example includes parameters such as name, description, labels, target project, target VPC, and DNS.\u003c/p\u003e\n"],["\u003cp\u003eThe managed zone's creation depends on the \u003ccode\u003egoogle_project_iam_member.default\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Sample terraform template for managed zone creation\n===================================================\n\nThe following is a sample terraform template for managed zone creation.\n**Note:**This sample is not specific to any connector. It just shows how a managed zone creation terraform template looks like. You must repurpose this sample based on your requirements. \n\n resource \"google_integration_connectors_managed_zone\" \"test_managed_zone\" {\n name = \"test-managed-zone\"\n description = \"tf created resource\"\n labels = {\n intent = \"example\"\n }\n target_project = data.google_project.target_project.project_id\n target_vpc = \"test\"\n dns = google_dns_managed_zone.default.dns_name\n depends_on = [google_project_iam_member.default]\n }"]]