[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-08-18 (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 }"]]