diff --git a/main.tf b/main.tf index e4e35a6..e644c05 100644 --- a/main.tf +++ b/main.tf @@ -2,7 +2,7 @@ resource "proxmox_virtual_environment_vm" "server" { for_each = { for row in var.server : row.name => row } name = "${each.value.name}.${try(each.value.dns_zone, var.server_dns_zone)}" - description = try(each.value.description, " ") + description = try(each.value.description, null) tags = concat( [ "provisioner_terraform",