Merge branch '21832-installer-rds-support'
[arvados.git] / tools / salt-install / terraform / aws / vpc / terraform.tfvars
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: CC-BY-SA-3.0
4
5 # Main cluster configurations. No sensible defaults provided for these:
6 # region_name = "us-east-1"
7 # cluster_name = "xarv1"
8 # domain_name = "xarv1.example.com"
9
10 # Uncomment this to create an non-publicly accessible Arvados cluster
11 # private_only = true
12
13 # Optional networking options. Set existing resources to be used instead of
14 # creating new ones.
15 # NOTE: We only support fully managed or fully custom networking, not a mix of both.
16 #
17 # vpc_id = "vpc-aaaa"
18 # sg_id = "sg-bbbb"
19 # public_subnet_id = "subnet-cccc"
20 # private_subnet_id = "subnet-dddd"
21 #
22 # RDS related parameters:
23 # use_rds = true
24 # additional_rds_subnet_id = "subnet-eeee"
25
26 # Optional custom tags to add to every resource. Default: {}
27 # custom_tags = {
28 #   environment = "production"
29 #   project = "Phoenix"
30 #   owner = "jdoe"
31 # }
32
33 # Optional cluster service nodes configuration:
34 #
35 # List of node names which either will be hosting user-facing or internal
36 # services. Defaults:
37 # user_facing_hosts = [ "controller", "workbench" ]
38 # internal_service_hosts = [ "keep0", "shell" ]
39 #
40 # Map assigning each node name an internal IP address. Defaults:
41 # private_ip = {
42 #   controller = "10.1.1.11"
43 #   workbench = "10.1.1.15"
44 #   shell = "10.1.2.17"
45 #   keep0 = "10.1.2.13"
46 # }
47 #
48 # Map assigning DNS aliases for service node names. Defaults:
49 # dns_aliases = {
50 #   workbench = [
51 #     "ws",
52 #     "workbench2",
53 #     "webshell",
54 #     "keep",
55 #     "download",
56 #     "prometheus",
57 #     "grafana",
58 #     "*.collections"
59 #   ]
60 # }