X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/34fc414b10c18a1f836daad5520e335647d692eb..3a9428dd1db2fd393dd90cd3ffc744c0bf45fe28:/tools/salt-install/terraform/aws/vpc/variables.tf diff --git a/tools/salt-install/terraform/aws/vpc/variables.tf b/tools/salt-install/terraform/aws/vpc/variables.tf index 020c697ab0..b91cc42149 100644 --- a/tools/salt-install/terraform/aws/vpc/variables.tf +++ b/tools/salt-install/terraform/aws/vpc/variables.tf @@ -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 = { + controller = ["ws"] + workbench = [ + "workbench2", + "webshell", + "keep", + "download", + "prometheus", + "grafana", + "*.collections" + ] } }