Arif Ali
47b58e8c65
* Add all the ceph juju resources * Initial start of the MAAS resources * test of a local-lxd juju environment
17 lines
256 B
HCL
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"
|
|
|
|
}
|