21700: Install Bundler system-wide in Rails postinst
[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 # vpc_id = "vpc-aaaa"
17 # sg_id = "sg-bbbb"
18 # public_subnet_id = "subnet-cccc"
19 # private_subnet_id = "subnet-dddd"
20
21 # Optional custom tags to add to every resource. Default: {}
22 # custom_tags = {
23 #   environment = "production"
24 #   project = "Phoenix"
25 #   owner = "jdoe"
26 # }
27
28 # Optional cluster service nodes configuration:
29 #
30 # List of node names which either will be hosting user-facing or internal
31 # services. Defaults:
32 # user_facing_hosts = [ "controller", "workbench" ]
33 # internal_service_hosts = [ "keep0", "shell" ]
34 #
35 # Map assigning each node name an internal IP address. Defaults:
36 # private_ip = {
37 #   controller = "10.1.1.11"
38 #   workbench = "10.1.1.15"
39 #   shell = "10.1.2.17"
40 #   keep0 = "10.1.2.13"
41 # }
42 #
43 # Map assigning DNS aliases for service node names. Defaults:
44 # dns_aliases = {
45 #   workbench = [
46 #     "ws",
47 #     "workbench2",
48 #     "webshell",
49 #     "keep",
50 #     "download",
51 #     "prometheus",
52 #     "grafana",
53 #     "*.collections"
54 #   ]
55 # }