-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
33 lines (29 loc) · 771 Bytes
/
variables.tf
File metadata and controls
33 lines (29 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
variable "vdc_org_name" {
type = string
description = "Cloud Director Organization Name"
default = ""
}
variable "vdc_name" {
type = string
description = "Cloud Director VDC Name"
default = ""
}
variable "vm_name" {
description = "The name of the VM to which internal disks are added."
type = string
}
variable "internal_disks" {
description = "List of internal disk configurations."
type = list(object({
size_in_mb = number
bus_type = string
bus_number = number
unit_number = number
iops = number
storage_profile = string
}))
}
variable "vm_internal_disk_allow_vm_reboot" {
description = "Ensures disks can be added to powered-on VMs"
default = true
}