infrastructure/terraform/variables.tf

21 lines
265 B
Terraform
Raw Normal View History

2024-07-08 20:27:08 +00:00
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
}