21855: Update URL path for RPMs
[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 # Use an RDS instance for database. For this to work, make sure to also set
25 # 'use_rds' to true in '../vpc/terraform.tfvars'.
26 # use_rds = true
27 #
28 # Provide custom values if needed.
29 # rds_username = ""
30 # rds_password = ""
31 # rds_instance_type = "db.m5.xlarge"
32 # rds_postgresql_version = "16.3"
33 # rds_allocated_storage = 200
34 # rds_max_allocated_storage = 1000
35 # rds_backup_retention_period = 30
36 # rds_backup_before_deletion = false
37 # rds_final_backup_name = ""
38
39 # AWS secret's name which holds the SSL certificate private key's password.
40 # Default: "arvados-ssl-privkey-password"
41 # ssl_password_secret_name_suffix = "some-name-suffix"
42
43 # User for software deployment. Depends on the AMI's distro.
44 # Default: "admin"
45 # deploy_user = "ubuntu"
46
47 # Instance AMI to use for service nodes. Default: latest from Debian 11
48 # instance_ami = "ami-0481e8ba7f486bd99"