wireguard-setup/packer/variables.pkr.hcl
Héctor Molinero Fernández 5bce0eb3c9 Parametrized QEMU accelerator
2022-03-02 21:21:09 +01:00

18 lines
390 B
HCL

variable "hcloud_api_token" {
type = string
description = "Hetzner Cloud API token"
default = "xxxx"
}
variable "digitalocean_api_token" {
type = string
description = "DigitalOcean API token"
default = "xxxx"
}
variable "qemu_accelerator" {
type = string
description = "The accelerator type to use when running the VM"
default = "kvm"
}