infrastructure/terraform/variables.tf
2024-07-08 22:27:08 +02:00

20 lines
265 B
HCL

variable "nodes" {
type = map(object({
public = bool
type = string
host = string
}))
}
variable "cluster_name" {
type = string
}
variable "domain" {
type = string
}
variable "tailscale_authkey" {
type = string
sensitive = true
}