Files
kubernetes-the-hard-way/terraform/variables.tf
2025-12-22 12:26:40 -05:00

13 lines
172 B
HCL

variable "hcloud_token" {
sensitive = true
type = string
}
variable "public_key_file" {
type = string
sensitive = true
}
variable "boxes" {
type = set(string)
}