You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
555 B
HCL
20 lines
555 B
HCL
variable "availability_zone" {
|
|
description = "The availability zone this disk will reside in. This AZ is applied to all 'num' disks."
|
|
type = string
|
|
}
|
|
|
|
variable "num" {
|
|
description = "The number of disks to be created with this config."
|
|
type = number
|
|
}
|
|
|
|
variable "prefix" {
|
|
description = "This prefix will be used in the name of each disk created with this module. If the prefix is 'zfs', then it will create disks with names, zfs-0 and zfs-1."
|
|
type = string
|
|
}
|
|
|
|
variable "size" {
|
|
description = "The size of the disk in GB."
|
|
type = number
|
|
}
|