mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 09:32:39 +00:00
16 lines
295 B
HCL
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"
|
|
}
|