From f206996a401a92d71b9b61ea200362075accdc42 Mon Sep 17 00:00:00 2001 From: Tyler Bennett Date: Fri, 18 Dec 2020 22:53:41 -0600 Subject: [PATCH] ensure all resources utilize the vars.esxi_datastore var --- ESXi/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ESXi/main.tf b/ESXi/main.tf index d009c59..ac1fe03 100644 --- a/ESXi/main.tf +++ b/ESXi/main.tf @@ -68,7 +68,7 @@ resource "esxi_guest" "logger" { resource "esxi_guest" "dc" { guest_name = "dc" - disk_store = "datastore2" + disk_store = var.esxi_datastore guestos = "windows9srv-64" boot_disk_type = "thin" @@ -97,7 +97,7 @@ resource "esxi_guest" "dc" { resource "esxi_guest" "wef" { guest_name = "wef" - disk_store = "datastore2" + disk_store = var.esxi_datastore guestos = "windows9srv-64" boot_disk_type = "thin" @@ -126,7 +126,7 @@ resource "esxi_guest" "wef" { resource "esxi_guest" "win10" { guest_name = "win10" - disk_store = "datastore2" + disk_store = var.esxi_datastore guestos = "windows9-64" boot_disk_type = "thin"