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.
17 lines
515 B
HCL
17 lines
515 B
HCL
variable "drive-letters" {
|
|
default = ["f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
|
|
description = "These drive letters will be used when arraching disks to EC2 instance with `ec2-id'"
|
|
type = list(string)
|
|
nullable = false
|
|
}
|
|
|
|
variable "disks" {
|
|
description = "An array of disks to attach to the EC2 isntance with `ec2-id`"
|
|
type = list
|
|
}
|
|
|
|
variable "ec2-id" {
|
|
description = "The ID of the EC@ instance to attach the drives to."
|
|
type = string
|
|
}
|