terraform/maas/arif-home/00-spaces.tf
Arif Ali 9c40b400cf
various updates
* Add the variabe definition of machines, which was in another file
* Add all the networking bits for MAAS
2024-01-02 18:18:39 +00:00

17 lines
213 B
HCL

resource "maas_space" "maas_spaces" {
for_each = {
for index, spaces in var.spaces:
spaces.space => spaces
}
name = each.value.space
}
resource "maas_fabric" "fabric-0" {
name = "fabric-0"
}