Files
terraform-talos/_old/prepare/variables.tf
Serge Logvinov 864caeb138 refactoring
2021-09-03 10:33:26 +03:00

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