hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.61k stars 4.65k forks source link

Support for AVS #9283

Closed yupwei68 closed 3 years ago

yupwei68 commented 4 years ago

Community Note

Description

Azure VMware Solution provides you with private clouds that contain vSphere clusters, built from dedicated bare-metal Azure infrastructure. All provisioned private clouds have vCenter Server, vSAN, vSphere, and NSX-T. You can migrate workloads from your on-premises environments, deploy new virtual machines (VMs), and consume Azure services from your private clouds.

New or Affected Resource(s)

Potential Terraform Configuration

resource "azurerm_avs_private_cloud" "example" {
  name                = "example-avs-private-cloud"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  sku_name            = "AV36"

  management_cluster {
    cluster_size = 3
  }

  network_block      = "192.168.48.0/22"
  internet_connected = false
  nsxt_password      = "QazWsx13$Edc"
  vcenter_password   = "QazWsx13$Edc"
  tags = {
    foo = "bar"
  }
}

References

ctaggart commented 4 years ago

Is this being blocked on feedback for the trace header issue? https://github.com/Azure/azure-resource-manager-rpc/issues/101

jimmfarley commented 3 years ago

Yes, we need this soon!

dylanhughes commented 3 years ago

@yupwei68 looks like we are close to bringing this resource to the Azure provider, there are no blockers now correct? It is just on a long list or priorities to get reviewed?

yupwei68 commented 3 years ago

Close for they are all supported.

github-actions[bot] commented 3 years ago

This functionality has been released in v2.64.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

github-actions[bot] commented 3 years ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.