You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/workloads/vm/variables.tf
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -76,3 +76,14 @@ variable "wait_for_lease" {
76
76
description="Whether Terraform should wait for an IP lease on the primary NIC. Set to false when using static IPs via cloud-init network_data without qemu-guest-agent."
77
77
default=true
78
78
}
79
+
80
+
variable"additional_disks" {
81
+
type=list(object({
82
+
name =string
83
+
size =string
84
+
image =optional(string)
85
+
auto_delete =optional(bool, true)
86
+
}))
87
+
description="List of additional disks to attach to the VM."
0 commit comments