Merge branch 'main' from arvados-workbench2.git
[arvados.git] / tools / salt-install / terraform / aws / services / variables.tf
index 99005a22038ef99bc83b0c58ffb0f8df11d50593..7e5d9056d41d9a579845bbe6fedb0b4531ad5cb3 100644 (file)
@@ -2,10 +2,21 @@
 #
 # SPDX-License-Identifier: CC-BY-SA-3.0
 
-variable "default_instance_type" {
-  description = "The default EC2 instance type to use on the nodes"
-  type = string
-  default = "m5a.large"
+variable "instance_type" {
+  description = "The EC2 instance types to use per service node"
+  type = map(string)
+  default = {
+    default = "m5a.large"
+  }
+}
+
+variable "instance_volume_size" {
+  description = "EC2 volume size in GiB per service node"
+  type = map(number)
+  default = {
+    default = 20
+    controller = 100
+  }
 }
 
 variable "pubkey_path" {