mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 01:52:18 +00:00
27 lines
544 B
HCL
27 lines
544 B
HCL
|
|
variable "hcloud_token" {
|
|
description = "The hezner cloud token (export TF_VAR_hcloud_token=$TOKEN)"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "regions" {
|
|
description = "The id of the hezner region (oreder is important)"
|
|
type = list(string)
|
|
default = ["nbg1"]
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "Tags of resources"
|
|
type = map(string)
|
|
default = {
|
|
environment = "Develop"
|
|
}
|
|
}
|
|
|
|
variable "talos_version" {
|
|
description = "Talos image version"
|
|
type = string
|
|
default = "v0.10.0"
|
|
}
|