[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[[["\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 }"]]