Добавить terraform/vmware/provider.tf

This commit is contained in:
2026-05-06 08:46:56 +03:00
parent b865a5b308
commit a6cfdb319e
+15
View File
@@ -0,0 +1,15 @@
terraform {
required_providers {
vsphere = {
source = "hashicorp/vsphere"
version = "~> 2.0"
}
}
}
provider "vsphere" {
user = var.vsphere_user
password = var.vsphere_password
vsphere_server = var.vsphere_server
allow_unverified_ssl = true
}