terraform/maas/arif-home/00-machines.tf
Arif Ali cd4cb5291b
Update to latest plans
Update the openstack ones so that they don't overlap devices in lab

Add the MAAS plans that had been staged for a bit
2024-02-08 19:05:24 +00:00

15 lines
337 B
HCL

resource "maas_machine" "asrock_machines" {
for_each = {
for index, asrock_machines in var.asrock_machines:
asrock_machines.host_name => asrock_machines
}
power_parameters = {}
power_type = each.value.power_type
pxe_mac_address = each.value.mac_addr
hostname = each.value.host_name
zone = each.value.host_name
}