mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 01:52:18 +00:00
26 lines
459 B
HCL
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"
|
|
}
|