add volume_size

This commit is contained in:
Ryan Malloy 2024-03-28 18:58:32 +00:00
parent 533b81d43a
commit 458c366bef
1 changed files with 6 additions and 0 deletions

View File

@ -58,4 +58,10 @@ variable "instance_type" {
)
error_message = "Instance_type must be set to a valid vm instance type."
}
}
variable "volume_size" {
description = "Instance volume size in Gigabytes"
default = 10
type = number
}