mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 17:42:47 +00:00
31 lines
508 B
HCL
31 lines
508 B
HCL
|
|
variable "upcloud_username" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "upcloud_password" {
|
|
type = string
|
|
default = ""
|
|
sensitive = true
|
|
}
|
|
|
|
variable "upcloud_zone" {
|
|
type = string
|
|
default = "nl-ams1"
|
|
}
|
|
|
|
variable "upcloud_zones" {
|
|
type = list(string)
|
|
default = ["de-fra1", "uk-lon1"]
|
|
}
|
|
|
|
variable "talos_version" {
|
|
type = string
|
|
default = "v1.3.3"
|
|
}
|
|
|
|
locals {
|
|
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/upcloud-amd64.raw.xz"
|
|
}
|