terraform/non-lab/variables.tf

33 lines
556 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
}))
}
2025-04-17 15:15:03 +02:00
variable "iot_devices" {
type = list(object({
name = string
address = string
mac = string
description = string
}))
}
2025-04-15 12:01:56 +00:00
variable "dhcp_subnets" {
type = map(string)
}