packer-qemu/image/assets/hcl/variable.pkr.hcl

35 lines
493 B
HCL
Raw Normal View History

variable "ansible_extra_vars" {
type = string
default = ""
}
variable "ansible_provisioning_playbook" {
type = string
default = "/packer/ansible/playbook.yml"
}
variable "iso_checksum" {
type = string
default = ""
}
variable "iso_url" {
type = string
default = ""
}
variable "ssh_password" {
type = string
default = ""
}
variable "ssh_username" {
type = string
default = ""
}
2021-01-12 23:38:15 +00:00
variable "image_version" {
type = string
default = "latest"
}