ceph-installer/terraform/ceph-disks.tf
2024-01-27 23:26:11 +03:00

11 lines
240 B
HCL

resource "lxd_volume" "ceph-osd-vol" {
pool = "default"
project = lxd_project.cephproject.name
name = format("ceph-osd-%d", count.index + 1)
count = 4
content_type = "block"
config = {
size = "10GiB"
}
}