2024-06-05 00:57:05 +00:00
|
|
|
variable "hv_fqdn" {}
|
|
|
|
variable "hv_username" {}
|
|
|
|
variable "hv_password" {
|
2021-06-10 09:39:42 +00:00
|
|
|
sensitive = true
|
|
|
|
}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
2024-06-05 00:57:05 +00:00
|
|
|
variable "hv_host" {}
|
|
|
|
variable "hv_datacenter" {}
|
|
|
|
variable "hv_cluster" {}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
2024-06-05 00:57:05 +00:00
|
|
|
variable "hv_templatefolder" {}
|
|
|
|
variable "hv_folder" {}
|
|
|
|
variable "hv_datastore" {}
|
|
|
|
variable "hv_network" {}
|
2021-06-05 17:34:31 +00:00
|
|
|
|
|
|
|
variable "vm_name" {}
|
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
|
|
|
|
}
|
2023-03-09 11:45:51 +00:00
|
|
|
|
|
|
|
variable "docker_username" {}
|
|
|
|
variable "docker_password" {
|
|
|
|
sensitive = true
|
|
|
|
}
|
2023-03-15 09:24:45 +00:00
|
|
|
|
2023-07-07 15:12:20 +00:00
|
|
|
variable "appliance_version" {}
|
2023-03-15 09:24:45 +00:00
|
|
|
variable "k8s_version" {}
|