From a49d95b450972b854e160918b35ca98e7dbce07d Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Thu, 19 Oct 2023 14:40:51 +0200 Subject: [PATCH] fix(vmware): removing unused variable in vm definitione --- modules/vmware/variables.tf | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/modules/vmware/variables.tf b/modules/vmware/variables.tf index eb9833c..75b2d03 100644 --- a/modules/vmware/variables.tf +++ b/modules/vmware/variables.tf @@ -5,14 +5,6 @@ variable "vms" { cpu = number ram = number guest_id = string - ovf_deploy = map(object({ - allow_unverified_ssl_cert = bool - local_ovf_path = string - disk_provisioning = string - deployment_option = map(object({ - default = string - })) - })) disks = map(object({ size = string thin_provisioned = bool @@ -58,4 +50,5 @@ variable "ovfs" { } )) description = "Virtual Machines description" + default = {} } \ No newline at end of file