Skip to content

Commit 9611553

Browse files
Update variables.tf
Added missing descriptions
1 parent c3acecc commit 9611553

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

variables.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,19 @@ variable "memory_hot_add_enabled" {
151151
}
152152

153153
variable "data_disk_size_gb" {
154-
description = "Storage data disk size size"
154+
description = "List of Storage data disk size"
155155
type = list
156156
default = []
157157
}
158158

159159
variable "disk_datastore"{
160+
description = "Define where the OS disk should be stored"
160161
type = string
161162
default = ""
162163
}
163164

164165
variable "data_disk_datastore" {
166+
description = "Define where the data disk should be stored, should be equal to number of defined data disks"
165167
type = list
166168
default = []
167169
# validation {
@@ -171,6 +173,7 @@ variable "data_disk_datastore" {
171173
}
172174

173175
variable "data_disk_scsi_controller" {
176+
description = "scsi_controller number for the data disk, should be equal to number of defined data disk"
174177
type = list
175178
default = []
176179
# validation {
@@ -179,11 +182,13 @@ variable "data_disk_scsi_controller" {
179182
# }
180183
}
181184
variable "scsi_type" {
185+
description = "scsi_controller type, acceptable values lsilogic,pvscsi "
182186
type = string
183187
default = ""
184188
}
185189

186190
variable "scsi_controller"{
191+
description = "scsi_controller number for the main OS disk"
187192
type = number
188193
default = 0
189194
# validation {

0 commit comments

Comments
 (0)