20482: Allows the site admin to specify instance volume sizes per node.
[arvados.git] / tools / salt-install / terraform / aws / services / variables.tf
index 08675a84f4fd1baeb6aae923b65a75d7a2895fb1..7e5d9056d41d9a579845bbe6fedb0b4531ad5cb3 100644 (file)
@@ -10,6 +10,15 @@ variable "instance_type" {
   }
 }
 
+variable "instance_volume_size" {
+  description = "EC2 volume size in GiB per service node"
+  type = map(number)
+  default = {
+    default = 20
+    controller = 100
+  }
+}
+
 variable "pubkey_path" {
   description = "Path to the file containing the public SSH key"
   type = string