feat: week 2 opdracht 1a

This commit is contained in:
2025-04-27 09:30:30 +00:00
parent ebd2cc0db5
commit 49a76e0b72
4 changed files with 73 additions and 0 deletions

15
week-2/providers.tf Normal file
View File

@@ -0,0 +1,15 @@
terraform {
required_providers {
esxi = {
source = "registry.terraform.io/josenk/esxi"
}
}
}
provider "esxi" {
esxi_hostname = var.esxi_hostname
esxi_hostport = var.esxi_hostport
esxi_hostssl = var.esxi_hostssl
esxi_username = var.esxi_username
esxi_password = var.esxi_password
}