Files
terraform-talos/hetzner/images/variables.pkr.hcl
Serge Logvinov 358858c7c2 update version
2024-08-14 18:10:58 +03:00

26 lines
459 B
HCL

variable "hcloud_token" {
type = string
default = env("HCLOUD_TOKEN")
sensitive = true
}
variable "hcloud_location" {
type = string
default = "fsn1"
}
variable "hcloud_type" {
type = string
default = "cax11" # cx11|cax11 (arm)
}
variable "talos_version" {
type = string
default = "v1.7.6"
}
locals {
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/hcloud-$ARCH.raw.xz"
}