{"id":26716833,"url":"https://github.com/global-vmware/vcd_network_isolated_v2","last_synced_at":"2025-03-27T15:47:57.525Z","repository":{"id":176725444,"uuid":"659522491","full_name":"global-vmware/vcd_network_isolated_v2","owner":"global-vmware","description":"This Repository contains the \"vcd_network_isolated_v2\" Terraform Module. You can use this Module to deploy a Data Center Group Isolated Network into a VMware Cloud Director (VCD) Environment.","archived":false,"fork":false,"pushed_at":"2023-12-15T02:45:59.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-12-15T22:59:48.952Z","etag":null,"topics":["infrastructure-as-code","networking","routing","terraform","terraform-module","vmware"],"latest_commit_sha":null,"homepage":"https://www.rackspace.com/cloud/vmware","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/global-vmware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-06-28T02:50:08.000Z","updated_at":"2023-12-15T22:59:48.953Z","dependencies_parsed_at":null,"dependency_job_id":"fbdf5345-b5aa-43d5-bcac-5983189e5144","html_url":"https://github.com/global-vmware/vcd_network_isolated_v2","commit_stats":null,"previous_names":["global-vmware/vcd_network_isolated_v2"],"tags_count":2,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_network_isolated_v2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_network_isolated_v2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_network_isolated_v2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_network_isolated_v2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/global-vmware","download_url":"https://codeload.github.com/global-vmware/vcd_network_isolated_v2/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245874763,"owners_count":20686830,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["infrastructure-as-code","networking","routing","terraform","terraform-module","vmware"],"created_at":"2025-03-27T15:47:57.069Z","updated_at":"2025-03-27T15:47:57.511Z","avatar_url":"https://github.com/global-vmware.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Data Center Group Isolated Network Terraform Module\n\nThis Terraform module will deploy a Data Center Group Isolated Network into an existing VMware Cloud Director (VCD) Environment.  This module can be used to provision new Data Center Group Networks into [Rackspace Technology SDDC Flex](https://www.rackspace.com/cloud/private/software-defined-data-center-flex) VCD Data Center Regions.\n\n## Requirements\n\n| Name | Version |\n|------|---------|\n| terraform | ~\u003e 1.2 |\n| vcd | ~\u003e 3.8 |\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [vcd_vdc_group](https://registry.terraform.io/providers/vmware/vcd/latest/docs/data-sources/vdc_group) | data source |\n| [vcd_nsxt_edgegateway](https://registry.terraform.io/providers/vmware/vcd/latest/docs/data-sources/nsxt_edgegateway) | data source |\n| [vcd_network_isolated_v2](https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/network_isolated_v2) | resource |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|----------|\n| vdc_org_name | The name of the Data Center Group Organization in VCD | string | `\"Organization Name Format: \u003cAccount_Number\u003e-\u003cRegion\u003e-\u003cAccount_Name\u003e\"` | yes |\n| vdc_group_name | The name of the Data Center Group in VCD | string | `\"Data Center Group Name Format: \u003cAccount_Number\u003e-\u003cRegion\u003e-\u003cAccount_Name\u003e \u003cdatacenter group\u003e\"` | yes |\n| vdc_edge_name | Name of the Data Center Group Edge Gateway | string | `\"Edge Gateway Name Format: \u003cAccount_Number\u003e-\u003cRegion\u003e-\u003cEdge_GW_Identifier\u003e-\u003cedge\u003e\"` | yes |\n| segments | A map of objects defining the segments to be created, including gateway, prefix length, DNS servers, DNS suffix, and IP pool ranges. | map(object({ gateway = string, prefix_length = number, dns1 = string, dns2 = string, dns_suffix = string, pool_ranges = list(object({ start_address = string, end_address = string })) })) | N/A | yes |\n\n`NOTE:` The `segments` input requires a map of objects with specific attributes. Each segment object should have a `gateway`, `prefix_length`, `dns1`, `dns2`, `dns_suffix`, and `pool_ranges`. The `pool_ranges` should be a list of objects with `start_address` and `end_address`.\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| segment_inputs | This output will provide a map of the segments created with their assigned attributes. |\n\n## Example Usage\n\nHere's an example of how to use this module in a `main.tf` file:\n\n```terraform\nmodule \"org_vdc_isolated_network\" {\n  source          = \"github.com/global-vmware/vcd_network_isolated_v2.git?ref=v1.0.1\"\n  \n  vdc_group_name      = \"\u003cUS1-VDC-GRP-NAME\u003e\"\n  vdc_org_name        = \"\u003cUS1-VDC-ORG-NAME\u003e\"\n  vdc_edge_name       = \"\u003cUS1-VDC-EDGE-NAME\u003e\"\n\n  segments = {\n    US1-Isolated-Segment-01 = {\n      gateway       = \"172.16.20.1\"\n      prefix_length = 24\n      dns1          = \"192.168.255.228\"\n      dns2          = \"\"\n      dns_suffix    = \"mydomain.com\"\n      pool_ranges   = [\n        {\n          start_address = \"172.16.20.50\"\n          end_address = \"172.16.20.100\"\n        }\n      ]\n    },\n    US1-Isolated-Segment-02 = {\n      gateway       = \"172.16.21.1\"\n      prefix_length = 24\n      dns1          = \"192.168.255.228\"\n      dns2          = \"\"\n      dns_suffix    = \"mydomain.com\"\n      pool_ranges   = [\n        {\n          start_address = \"172.16.21.50\"\n          end_address = \"172.16.21.100\"\n        }\n      ]\n    }    \n  }\n}\n```\n\n## Authors\n\nThis module is maintained by the [Global VMware Cloud Automation Services Team](https://github.com/global-vmware).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobal-vmware%2Fvcd_network_isolated_v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglobal-vmware%2Fvcd_network_isolated_v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobal-vmware%2Fvcd_network_isolated_v2/lists"}