wireguard-setup/packer/variables.pkr.hcl

18 lines
390 B
HCL
Raw Normal View History

2020-06-14 21:25:25 +02:00
variable "hcloud_api_token" {
2021-06-14 22:49:37 +02:00
type = string
2020-06-14 21:25:25 +02:00
description = "Hetzner Cloud API token"
2022-03-02 20:23:08 +01:00
default = "xxxx"
2020-06-14 21:25:25 +02:00
}
variable "digitalocean_api_token" {
2021-06-14 22:49:37 +02:00
type = string
description = "DigitalOcean API token"
2022-03-02 20:23:08 +01:00
default = "xxxx"
}
2022-03-02 21:21:09 +01:00
variable "qemu_accelerator" {
type = string
description = "The accelerator type to use when running the VM"
default = "kvm"
}