20259: Add documentation for banner and tooltip features
[arvados.git] / tools / salt-install / terraform / aws / vpc / variables.tf
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: CC-BY-SA-3.0
4
5 variable "region_name" {
6   description = "Name of the AWS Region where to install Arvados"
7   type = string
8 }
9
10 variable "cluster_name" {
11   description = "A 5-char alphanum identifier for your Arvados cluster"
12   type = string
13   validation {
14     condition = length(var.cluster_name) == 5
15     error_message = "cluster_name should be 5 chars long."
16   }
17 }
18
19 variable "domain_name" {
20   description = "The domain name under which your Arvados cluster will be hosted"
21   type = string
22 }