21204: Merge branch '21204-stable-log-sort' from arvados-workbench2.git
[arvados.git] / tools / salt-install / terraform / aws / vpc / variables.tf
index 020c697ab037cb07ff8cc2782a953e958d02c694..c8d366a199dc435aa078fc13583a40c1df764e62 100644 (file)
@@ -43,10 +43,27 @@ variable "private_ip" {
   description = "Map with every node's private IP address"
   type = map(string)
   default = {
-    controller: "10.1.1.11",
-    workbench: "10.1.1.15",
-    shell: "10.1.2.17",
-    keep0: "10.1.2.13",
+    controller = "10.1.1.11"
+    workbench = "10.1.1.15"
+    shell = "10.1.2.17"
+    keep0 = "10.1.2.13"
+  }
+}
+
+variable "dns_aliases" {
+  description = "Sets DNS name aliases for every service node"
+  type = map(list(string))
+  default = {
+    workbench = [
+      "ws",
+      "workbench2",
+      "webshell",
+      "keep",
+      "download",
+      "prometheus",
+      "grafana",
+      "*.collections"
+    ]
   }
 }