Files
terraform-talos/system_os/hetzner/variables.pkr.hcl
Serge Logvinov 7e3be623a0 update packages
2022-11-21 18:33:35 +02:00

16 lines
295 B
HCL

variable "hcloud_token" {
type = string
default = env("HCLOUD_TOKEN")
sensitive = true
}
variable "talos_version" {
type = string
default = "v1.2.6"
}
locals {
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/hcloud-amd64.raw.xz"
}