From 458c366bef71c218c93bd3db1e0c04289f0a3608 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Thu, 28 Mar 2024 18:58:32 +0000 Subject: [PATCH] add volume_size --- variables.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/variables.tf b/variables.tf index 3a78330..242891d 100644 --- a/variables.tf +++ b/variables.tf @@ -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 } \ No newline at end of file