Files
terraform-modules/lawndale-vm/locals.tf

5 lines
231 B
HCL

locals {
root_storage_pool = var.root_storage_pool != "" ? var.root_storage_pool : var.name
root_storage_volume_name = var.root_storage_volume_name != "" ? "${var.root_storage_volume_name}.qcow2" : "${var.name}.qcow2"
}