Files
kubernetes-the-hard-way/terraform/variables.tf
2025-12-22 10:50:43 -05:00

12 lines
129 B
HCL

variable "hcloud_token" {
sensitive = true
}
locals {
boxes = [
{
name = "jumpbox"
type = "cx23"
}
]
}