From 35c5b8cdbbad5501ca91e056e499f1e28d5c79d6 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Wed, 5 Jul 2023 10:14:34 +0200 Subject: [PATCH] fix(vmware): correcting iterator name typo --- modules/vmware/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/vmware/main.tf b/modules/vmware/main.tf index 1b4995a..c7cfe3e 100644 --- a/modules/vmware/main.tf +++ b/modules/vmware/main.tf @@ -55,7 +55,7 @@ data "vsphere_network" "network" { resource "vsphere_virtual_machine" "vm" { for_each = var.vms - iterator = "machines" + iterator = "machine" name = "${machine.key}.${machine.value.domain}" resource_pool_id = data.vsphere_resource_pool.id datastore_id = data.vsphere_datastore.id