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

azurerm_vmware_private_cloud and azurerm_vmware_cluster adding new skus to validation-#24126 #24127

Merged
merged 2 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions internal/services/vmware/vmware_cluster_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ func resourceVmwareCluster() *pluginsdk.Resource {
"av36",
"av36t",
"av36p",
"av36pt",
"av52",
"av52t",
"av64",
}, false),
},

Expand Down
3 changes: 3 additions & 0 deletions internal/services/vmware/vmware_private_cloud_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ func resourceVmwarePrivateCloud() *pluginsdk.Resource {
"av36",
"av36t",
"av36p",
"av36pt",
"av52",
"av52t",
"av64",
}, false),
},

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/vmware_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The following arguments are supported:

* `cluster_node_count` - (Required) The count of the VMware Cluster nodes.

* `sku_name` - (Required) The cluster SKU to use. Possible values are `av20`, `av36`, `av36t`, `av36p` and `av52`. Changing this forces a new VMware Cluster to be created.
* `sku_name` - (Required) The cluster SKU to use. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av36pt`, `av52`, `av52t`, and `av64`. Changing this forces a new VMware Cluster to be created.

## Attributes Reference

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/vmware_private_cloud.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The following arguments are supported:

* `network_subnet_cidr` - (Required) The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new VMware Private Cloud to be created.

* `sku_name` - (Required) The Name of the SKU used for this Private Cloud. Possible values are `av20`, `av36`, `av36t`, `av36p` and `av52`. Changing this forces a new VMware Private Cloud to be created.
* `sku_name` - (Required) The Name of the SKU used for this Private Cloud. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av36pt`, `av52`, `av52t`, and `av64`. Changing this forces a new VMware Private Cloud to be created.

* `internet_connection_enabled` - (Optional) Is the Private Cluster connected to the internet? This field can not updated with `management_cluster.0.size` together.
~> **NOTE :** `internet_connection_enabled` and `management_cluster.0.size` cannot be updated at the same time.
Expand Down
Loading