Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for VMware Cloud Foundation cloud account #365

Open
tenthirtyam opened this issue Jul 23, 2021 · 0 comments
Open

Add support for VMware Cloud Foundation cloud account #365

tenthirtyam opened this issue Jul 23, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@tenthirtyam
Copy link
Contributor

tenthirtyam commented Jul 23, 2021

vReaize Automation version: 8.4.2
vRealize Automation Cloud: n/a

Terraform version:

terraform {
  required_providers {
    vra = {
      source  = "vmware/vra"
      version = ">= 0.3.8"
    }
  }
  required_version = ">= 1.0.0"
}

terraform-provider-vra version:

terraform {
  required_providers {
    vra = {
      source  = "vmware/vra"
      version = ">= 0.3.8"
    }
  }
  required_version = ">= 1.0.0"
}

Is your feature request related to a problem? Please describe.
Provide the ability to add a VMware Cloud Foundation cloud account if the SDDC Manager integration is present.

Describe the solution you'd like

Create a VMware Cloud Foundation cloud account if the SDDC Manager integration is present and add and NSX-T associations.

Something like this, perhaps...

resource "vra_cloud_account_vcf" "this" {
  for_each                     = var.cloud_accounts_vcf
  name                         = each.value["name"]
  description                  = each.value["description"]
  sddc_manager                 = data.vra_integration_sddc.this.id
  workload_domains             = [data.vra_integration_sddc.this[each.key].id]
  accept_self_signed_cert      = var.accept_self_signed
  tags {
    key   = "cloud"
    value = "private"
  }
}

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Use of the vra_cloud_account_vsphere and vra_cloud_account_nsxt resources is still an option, but is more management intensive.

Additional context

@tenthirtyam tenthirtyam added the enhancement New feature or request label Jul 23, 2021
@tenthirtyam tenthirtyam closed this as not planned Won't fix, can't repro, duplicate, stale Aug 27, 2023
@tenthirtyam tenthirtyam reopened this Jun 10, 2024
@tenthirtyam tenthirtyam changed the title Provide the ability to a VMware Cloud Foundation cloud account if the SDDC Manager integration is present. Add support for VMware Cloud Foundation cloud account Jun 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant