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 }