terraform/maas/arif-home/00-spaces.tf
Arif Ali 47b58e8c65
More terraform plans
* Add all the ceph juju resources
* Initial start of the MAAS resources
* test of a local-lxd juju environment
2023-11-29 08:13:37 +00:00

17 lines
256 B
HCL

locals {
spaces = ["external","oam","ceph-access","ceph-replica","overlay","admin","internal"]
}
resource "maas_space" "maas_spaces" {
for_each = toset(local.spaces)
name = each.value
}
resource "maas_fabric" "fabric-0" {
name = "fabric-0"
}