0
0
llucycodes42
The code creates a provider for the vSphere environment. The user and password properties are set to the value of the ${var.vsphere_user} and ${var.vsphere_password} variables, respectively. The vSphere_server property is set to the value of the ${var.vsphere_server} variable.
Shortcut: tf_vsphere
provider "vsphere" {
user = "\${var.vsphere_user}"
password = "\${var.vsphere_password}"
vsphere_server = "\${var.vsphere_server}"
}