fix(vmware): correcting cluster variable

This commit is contained in:
Philippe Caseiro 2023-07-05 10:18:44 +02:00
parent 9e5e3cc7e4
commit 0b3f0060ad
1 changed files with 2 additions and 1 deletions

View File

@ -21,11 +21,12 @@ variable "vms" {
} }
variable "cluster" { variable "cluster" {
type = object( type = object({
datacenter_name = string datacenter_name = string
datastore_name = string datastore_name = string
resource_pool_name = string resource_pool_name = string
folder = string folder = string
}
) )
description = "vSphere cluster definition" description = "vSphere cluster definition"
} }