21700: Install Bundler system-wide in Rails postinst
[arvados.git] / tools / salt-install / terraform / aws / services / terraform.tfvars
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: CC-BY-SA-3.0
4
5 # SSH public key path to use by the installer script. It will be installed in
6 # the home directory of the 'deploy_user'. Default: ~/.ssh/id_rsa.pub
7 # pubkey_path = "/path/to/pub.key"
8
9 # Set the instance type for your nodes. Default: m5a.large
10 # instance_type = {
11 #   default = "m5a.xlarge"
12 #   controller = "c5a.4xlarge"
13 # }
14
15 # Set the volume size (in GiB) per service node.
16 # Default: 100 for controller, 20 the rest.
17 # NOTE: The service node will need to be rebooted after increasing its volume's
18 # size.
19 # instance_volume_size = {
20 #   default = 20
21 #   controller = 300
22 # }
23
24 # AWS secret's name which holds the SSL certificate private key's password.
25 # Default: "arvados-ssl-privkey-password"
26 # ssl_password_secret_name_suffix = "some-name-suffix"
27
28 # User for software deployment. Depends on the AMI's distro.
29 # Default: "admin"
30 # deploy_user = "ubuntu"
31
32 # Instance AMI to use for service nodes. Default: latest from Debian 11
33 # instance_ami = "ami-0481e8ba7f486bd99"