terraform/non-lab/variables.tf
Chris Cowley 4ecb167ff6
Some checks failed
/ non-lab (push) Waiting to run
/ authentik (push) Has been cancelled
Many things
2025-04-17 15:15:03 +02:00

32 lines
556 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 "iot_devices" {
type = list(object({
name = string
address = string
mac = string
description = string
}))
}
variable "dhcp_subnets" {
type = map(string)
}