X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/aa22d3f08b5eae6c81a730a94825eea4ad1a191a..fc55e48b43faeb6909ea161d804d5600df3d5c5c:/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 ec6f5711b7..c8d366a199 100644 --- a/tools/salt-install/terraform/aws/vpc/variables.tf +++ b/tools/salt-install/terraform/aws/vpc/variables.tf @@ -39,6 +39,34 @@ variable "internal_service_hosts" { default = [ "keep0", "shell" ] } +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" + } +} + +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" + ] + } +} + variable "vpc_id" { description = "Use existing VPC instead of creating one for the cluster" type = string