Packer.Images/packer/variables.pkr.hcl
djpbessems f40889370d
Some checks failed
continuous-integration/drone/push Build is failing
Add logging;Move iso-file specifics to variable file;Housekeeping
2021-06-10 11:39:42 +02:00

29 lines
632 B
HCL

variable "vcenter_server" {}
variable "vsphere_username" {}
variable "vsphere_password" {
sensitive = true
}
variable "vsphere_host" {}
variable "vsphere_datacenter" {}
variable "vsphere_templatefolder" {}
variable "vsphere_folder" {}
variable "vsphere_datastore" {}
variable "vsphere_network" {}
variable "vm_name" {}
variable "vm_guestos" {}
variable "ssh_password" {
sensitive = true
}
variable "iso_url" {}
variable "iso_checksum" {}
variable "repo_username" {}
variable "repo_password" {
sensitive = true
}
locals {
iso_authenticatedurl = "https://${var.repo_username}:${var.repo_password}@${var.iso_url}"
}