{"id":26716828,"url":"https://github.com/global-vmware/vcd_vapp","last_synced_at":"2025-07-13T19:07:31.698Z","repository":{"id":157503926,"uuid":"633513662","full_name":"global-vmware/vcd_vapp","owner":"global-vmware","description":"This Repository contains the \"vcd_vapp\" Terraform Module. You can use this Module to deploy Virtual Applications (vApps) into a VMware Cloud Director (VCD) Environment.","archived":false,"fork":false,"pushed_at":"2025-07-02T20:14:05.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T21:23:54.790Z","etag":null,"topics":["infrastructure-as-code","terraform","terraform-module","vapp","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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-27T17:01:14.000Z","updated_at":"2025-07-02T20:09:27.000Z","dependencies_parsed_at":"2023-12-12T22:28:19.408Z","dependency_job_id":null,"html_url":"https://github.com/global-vmware/vcd_vapp","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/global-vmware/vcd_vapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_vapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_vapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_vapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_vapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/global-vmware","download_url":"https://codeload.github.com/global-vmware/vcd_vapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/global-vmware%2Fvcd_vapp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265191111,"owners_count":23725263,"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","terraform","terraform-module","vapp","vmware"],"created_at":"2025-03-27T15:47:56.156Z","updated_at":"2025-07-13T19:07:31.668Z","avatar_url":"https://github.com/global-vmware.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Virtual Application Terraform Module\n\nThis Terraform module will deploy Virtual Applications (vApps) into an existing VMware Cloud Director (VCD) Environment.  This module can be used to provision new vApps 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/3.8.2/docs/data-sources/vdc_group) | data source |\n| [vcd_vapp](https://registry.terraform.io/providers/vmware/vcd/3.8.2/docs/resources/vapp) | 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_name | Cloud Director VDC Name | string | `\"Virtual Data Center Name Format: \u003cAccount_Number\u003e-\u003cRegion\u003e-\u003cSegment Name\u003e\"` | Yes |\n| vapp_names | The names of the vApps to be created | list | - | Yes |\n| power_on | The boolean value stating if this vApp should be powered on | bool | - | No |\n\n## Outputs\n\n| Name         | Description             |\n|--------------|-------------------------|\n| vapp_names | The names of the Virtual Applications (vApps) |\n\n## Example Usage\n\nThis is an example of a `main.tf` file that uses the `\"github.com/global-vmware/vcd_vapp_vm\"` Module source to create vApps in a VMware Cloud Director environment:\n\n```terraform\nmodule \"vcd_vapp\" {\n  source                = \"github.com/global-vmware/vcd_vapp.git?ref=v1.2.1\"\n  \n  vdc_org_name          = \"\u003cUS1-VDC-ORG-NAME\u003e\"\n  vdc_group_name        = \"\u003cUS1-VDC-GRP-NAME\u003e\"\n  vdc_name              = \"\u003cUS1-VDC-NAME\u003e\"\n\n  vapp_names = [\n    \"My Production vApp-01\",\n    \"My Production vApp-02\"\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_vapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglobal-vmware%2Fvcd_vapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobal-vmware%2Fvcd_vapp/lists"}