Allow compute-vm disks to have custom names (#3792)

* module support custom name if provided instead of just {vm_name}-boot

* updated readme.md
This commit is contained in:
Suryansh Singhal
2026-03-16 16:52:34 +05:30
committed by GitHub
parent 5bb0862638
commit 761399f055
3 changed files with 37 additions and 36 deletions

View File

@@ -92,6 +92,7 @@ variable "attached_disks" {
variable "boot_disk" {
description = "Boot disk properties. Initialize params are ignored when source is set."
type = object({
name = optional(string)
auto_delete = optional(bool, true)
snapshot_schedule = optional(list(string))
source = optional(string)