mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 17:58:32 +00:00
20 lines
312 B
HCL
20 lines
312 B
HCL
|
|
variable "vultr_api_key" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "vultr_region" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "talos_version" {
|
|
type = string
|
|
default = "v1.3.3"
|
|
}
|
|
|
|
locals {
|
|
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/vultr-amd64.raw.xz"
|
|
}
|