1
0
IaC/zz_archived/packer/libvirt/arch/arch-minimal.variables.pkr.hcl

162 lines
3.6 KiB
HCL
Raw Normal View History

2022-10-02 22:19:24 -04:00
variable "image_url" {
type = string
description = "The URL to retrieve the backing image from."
}
variable "checksum_url" {
type = string
description = "The URL to retrieve the checksum value of the backing image from."
}
2022-10-03 07:11:25 -04:00
variable "cpu_count" {
type = number
description = "Number of vCPUs to create guest with."
2022-10-02 22:19:24 -04:00
}
2022-10-03 07:11:25 -04:00
variable "memory" {
type = number
description = "Amount of RAM in MiB to create guest with."
2022-10-02 22:19:24 -04:00
}
2022-10-03 07:11:25 -04:00
variable "domain_type" {
type = string
description = "Type of hypervisor to use."
default = "kvm"
2022-10-02 22:19:24 -04:00
}
variable "arch" {
type = string
description = "Domain architecture."
default = "x86_64"
}
variable "chipset" {
type = string
description = "Libvirt Machine Type Value for domain XML's machine type."
2022-10-03 07:11:25 -04:00
default = "q35"
}
variable "loader_type" {
type = string
description = "Where loader should be stored in guest. rom or pflash"
default = "pflash"
}
variable "loader_path" {
type = string
description = "File path where the OVMF firmware files are stored on the host."
}
variable "secure_boot" {
type = bool
description = "Whether to enable secure boot."
}
variable "nvram_template" {
type = string
description = "File path where the OVMF_VARS template file is stored on the host."
}
variable "nvram_path_base" {
type = string
description = "Parent dir where the guest OVMF_VARS copy will be stored. No trailing /"
}
variable "volume_name" {
type = string
description = "Name of the final template image artifact."
}
variable "volume_pool" {
type = string
description = "Host storage pool where the template image will be kept."
}
variable "volume_capacity" {
type = string
description = "Size of the template image drive."
}
variable "bridge_name" {
type = string
description = "Name of the bridge netdev on the host."
}
variable "guest_ssh_user" {
type = string
description = "User account for connecing to the guest VM, eg for provisioners."
2022-10-02 22:19:24 -04:00
}
variable "guest_ssh_pass" {
type = string
sensitive = true
2022-10-03 07:11:25 -04:00
description = "Password for SSH connection to the guest VM."
2022-10-03 09:47:03 -04:00
default = "placeholder"
2022-10-03 07:11:25 -04:00
}
variable "guest_ssh_port" {
type = number
description = "SSH port for connecting to the guest VM."
default = 22
}
variable "guest_ssh_private_key" {
type = string
description = "File path to the private key used for SSH pubkey auth to the guest VM."
}
variable "guest_ssh_public_key" {
type = string
description = "File path to the public key to be added to authoried_keys on the guest VM during cloud-init."
}
variable "guest_hostname" {
type = string
description = "The hostname of the virtual machine"
}
variable "ssh_source" {
type = string
description = "The subnet that will be added to the firewall SSH exception during cloud-init."
}
2022-10-03 09:47:03 -04:00
variable "host_ssh_user" {
type = string
description = "The user to connect to the hypervisor as, used to construct the libvirt URI."
}
2022-10-03 07:11:25 -04:00
variable "host_ssh_address" {
type = string
description = "The address of the hypervisor, used to construct the libvirt URI."
}
2022-10-03 09:47:03 -04:00
variable "host_ssh_private_key" {
2022-10-03 07:11:25 -04:00
type = string
2022-10-03 09:47:03 -04:00
description = "File path to the SSH key used to authenticate to the hypervisor host."
}
variable "host_ssh_known_hosts" {
type = string
description = "File path to the known_hosts file for validating the hypervisor host connection."
2022-10-03 07:11:25 -04:00
}
variable "network_address" {
type = string
description = "Network address assigned to the guest."
}
variable "network_gateway" {
type = string
description = "Default gateway assigned to the guest."
}
variable "network_nameserver" {
type = string
description = "DNS/Nameserver assigned to the guest."
}
variable "network_domain" {
type = string
description = "Search domain assigned to the guest."
2022-10-02 22:19:24 -04:00
}