20482: Allows deploying on known VPC & subnets.
[arvados.git] / tools / salt-install / terraform / aws / vpc / variables.tf
index 276f31433499faee401580630b6a9343ced8e633..e14c5980852166103c3d453477d82b256d311255 100644 (file)
@@ -37,4 +37,28 @@ variable "internal_service_hosts" {
   description = "List of hostnames for nodes that hold internal Arvados services"
   type = list(string)
   default = [ "keep0", "shell" ]
+}
+
+variable "vpc_id" {
+  description = "Use existing VPC instead of creating one for the cluster"
+  type = string
+  default = ""
+}
+
+variable "sg_id" {
+  description = "Use existing security group instead of creating one for the cluster"
+  type = string
+  default = ""
+}
+
+variable "private_subnet_id" {
+  description = "Use existing private subnet instead of creating one for the cluster"
+  type = string
+  default = ""
+}
+
+variable "public_subnet_id" {
+  description = "Use existing public subnet instead of creating one for the cluster"
+  type = string
+  default = ""
 }
\ No newline at end of file