terraform/non-lab/variables.tf

25 lines
412 B
Terraform
Raw Normal View History

2025-04-16 11:47:40 +02:00
variable "physical_lab" {
type = list(object({
name = string
address = string
mac = string
}))
}
variable "physical_home" {
type = list(object({
name = string
address = string
mac = string
}))
}
2025-04-15 12:01:56 +00:00
variable "esphome_boards" {
type = list(object({
name = string
address = string
mac = string
}))
}
variable "dhcp_subnets" {
type = map(string)
}