From 5f33e416c5b1c7999a2c7d2d0e067f6f6b31e994 Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Thu, 3 Jul 2025 13:04:15 +0200 Subject: [PATCH] Fix disk space issue (#12524) --- images/ubuntu/templates/variable.ubuntu.pkr.hcl | 2 +- images/windows/templates/variable.windows.pkr.hcl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/ubuntu/templates/variable.ubuntu.pkr.hcl b/images/ubuntu/templates/variable.ubuntu.pkr.hcl index 05ba85877..e2c6aaf76 100644 --- a/images/ubuntu/templates/variable.ubuntu.pkr.hcl +++ b/images/ubuntu/templates/variable.ubuntu.pkr.hcl @@ -96,7 +96,7 @@ variable "private_virtual_network_with_public_ip" { } variable "os_disk_size_gb" { type = number - default = 0 + default = null } variable "source_image_version" { type = string diff --git a/images/windows/templates/variable.windows.pkr.hcl b/images/windows/templates/variable.windows.pkr.hcl index daf69c66f..1605ce4a5 100644 --- a/images/windows/templates/variable.windows.pkr.hcl +++ b/images/windows/templates/variable.windows.pkr.hcl @@ -104,7 +104,7 @@ variable "private_virtual_network_with_public_ip" { } variable "os_disk_size_gb" { type = number - default = 0 + default = null } variable "source_image_version" { type = string