12 lines
172 B
Terraform
12 lines
172 B
Terraform
|
|
||
|
variable "esphome_boards" {
|
||
|
type = list(object({
|
||
|
name = string
|
||
|
address = string
|
||
|
mac = string
|
||
|
}))
|
||
|
}
|
||
|
variable "dhcp_subnets" {
|
||
|
type = map(string)
|
||
|
}
|