From 4ef4f50dc51ba5dc80aae892cbbb1993c87d16bb Mon Sep 17 00:00:00 2001 From: faiq Date: Thu, 12 Oct 2023 16:29:39 -0700 Subject: [PATCH] fix: vsphere test terraform as well --- test/infra/vsphere/main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/infra/vsphere/main.tf b/test/infra/vsphere/main.tf index 8e36ce77c..dd2773ba0 100644 --- a/test/infra/vsphere/main.tf +++ b/test/infra/vsphere/main.tf @@ -1,3 +1,13 @@ +// FIXME: https://d2iq.atlassian.net/browse/D2IQ-99451 +terraform { + required_providers { + vsphere = { + source = "hashicorp/vsphere" + version = "~> 2.4.0" + } + } +} + resource "random_id" "build_id" { byte_length = 8 }