azurerm_vmware_private_cloud

Manages an Azure VMware Solution Private Cloud.

Example Usage

provider "azurerm" {
  features {}
  disable_correlation_request_id = true
}

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_vmware_private_cloud" "example" {
  name                = "example-vmware-private-cloud"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  sku_name            = "av36"

  management_cluster {
    size = 3
  }

  network_subnet_cidr         = "192.168.48.0/22"
  internet_connection_enabled = false
  nsxt_password               = "QazWsx13$Edc"
  vcenter_password            = "WsxEdc23$Rfv"
}

Arguments Reference

The following arguments are supported:


A management_cluster block supports the following:

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:


A circuit block exports the following:


A management_cluster block exports the following:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Azure VMware Solution Private Clouds can be imported using the resource id, e.g.

terraform import azurerm_vmware_private_cloud.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/privateCloud1