2021-06-05 17:34:31 +00:00
|
|
|
variable "vcenter_server" {}
|
|
|
|
variable "vsphere_username" {}
|
2021-06-10 09:39:42 +00:00
|
|
|
variable "vsphere_password" {
|
|
|
|
sensitive = true
|
|
|
|
}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
|
|
|
variable "vsphere_host" {}
|
|
|
|
variable "vsphere_datacenter" {}
|
2022-04-25 07:21:05 +00:00
|
|
|
variable "vsphere_cluster" {}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
|
|
|
variable "vsphere_templatefolder" {}
|
|
|
|
variable "vsphere_folder" {}
|
|
|
|
variable "vsphere_datastore" {}
|
|
|
|
variable "vsphere_network" {}
|
|
|
|
|
|
|
|
variable "vm_name" {}
|
|
|
|
variable "vm_guestos" {}
|
2021-06-10 09:39:42 +00:00
|
|
|
variable "ssh_password" {
|
|
|
|
sensitive = true
|
|
|
|
}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
2021-06-10 09:39:42 +00:00
|
|
|
variable "iso_url" {}
|
|
|
|
variable "iso_checksum" {}
|
2021-06-05 17:34:31 +00:00
|
|
|
variable "repo_username" {}
|
2021-06-10 09:39:42 +00:00
|
|
|
variable "repo_password" {
|
|
|
|
sensitive = true
|
|
|
|
}
|
2021-06-10 09:52:11 +00:00
|
|
|
local "iso_authenticatedurl" {
|
|
|
|
expression = "https://${var.repo_username}:${var.repo_password}@${var.iso_url}"
|
|
|
|
sensitive = true
|
|
|
|
}
|