2021-06-04 15:15:59 +00:00
|
|
|
variable "vcenter_server" {}
|
|
|
|
variable "vsphere_username" {}
|
2021-06-04 15:22:54 +00:00
|
|
|
variable "vsphere_password" {}
|
2021-06-04 15:15:59 +00:00
|
|
|
|
|
|
|
variable "vsphere_host" {}
|
|
|
|
variable "vsphere_hostip" {}
|
|
|
|
variable "vsphere_datacenter" {}
|
|
|
|
|
|
|
|
variable "vsphere_templatefolder" {}
|
|
|
|
variable "vsphere_folder" {}
|
|
|
|
variable "vsphere_datastore" {}
|
|
|
|
variable "vsphere_network" {}
|
2021-06-04 15:22:54 +00:00
|
|
|
|
|
|
|
variable "vm_name" {}
|
|
|
|
variable "vm_guestos" {}
|
|
|
|
variable "winrm_password" {}
|
|
|
|
|
2021-06-21 07:28:22 +00:00
|
|
|
variable "iso_url" {}
|
|
|
|
variable "iso_checksum" {}
|
|
|
|
variable "iso_paths" {}
|
2021-06-04 15:22:54 +00:00
|
|
|
variable "repo_username" {}
|
|
|
|
variable "repo_password" {}
|
2021-06-21 07:28:22 +00:00
|
|
|
|
|
|
|
local "iso_authenticatedurl" {
|
|
|
|
expression = "https://${var.repo_username}:${var.repo_password}@${var.iso_url}"
|
|
|
|
sensitive = true
|
|
|
|
}
|