terraform-incus/modules/storage_volume/main.tf
Ben Vincent cb67816eee feat: initial commit
- have been working on this for some time now
2025-05-30 22:36:55 +10:00

9 lines
216 B
HCL

resource "incus_storage_volume" "this" {
name = var.name
pool = var.pool
type = var.type
config = var.config
description = var.description
content_type = var.content_type
}