Files
terraform-talos/system_os/upcloud/variables.pkr.hcl
Serge Logvinov 4abd954146 update version
2023-01-24 22:17:51 +02:00

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"
}