terraform/non-lab/variables.tf
Chris Cowley 05d4287d05
Some checks failed
/ authentik (push) Failing after 43s
/ non-lab (push) Failing after 14m34s
Add k3s nucs to KEA and DNS
2025-04-16 11:47:47 +02:00

24 lines
412 B
HCL

variable "physical_lab" {
type = list(object({
name = string
address = string
mac = string
}))
}
variable "physical_home" {
type = list(object({
name = string
address = string
mac = string
}))
}
variable "esphome_boards" {
type = list(object({
name = string
address = string
mac = string
}))
}
variable "dhcp_subnets" {
type = map(string)
}