20259: Add documentation for banner and tooltip features
[arvados.git] / tools / salt-install / terraform / aws / services / variables.tf
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: CC-BY-SA-3.0
4
5 variable "default_instance_type" {
6   description = "The default EC2 instance type to use on the nodes"
7   type = string
8   default = "m5a.large"
9 }
10
11 variable "pubkey_path" {
12   description = "Path to the file containing the public SSH key"
13   type = string
14   default = "~/.ssh/id_rsa.pub"
15 }
16
17 variable "ssl_password_secret_name_suffix" {
18   description = "Name suffix for the SSL certificate's private key password AWS secret."
19   type = string
20   default = "arvados-ssl-privkey-password"
21 }