Arif Ali
9c40b400cf
* Add the variabe definition of machines, which was in another file * Add all the networking bits for MAAS
17 lines
213 B
HCL
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"
|
|
|
|
}
|