Doc: Update "Accessing an Arvados VM with SSH - Unix Environments"
[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 services
31 # user_facing_hosts = ["node1", "node2", ...]
32 # internal_service_hosts = ["node3", ...]
33 #
34 # Map assigning each node name an internal IP address
35 # private_ip = {
36 #   node1 = "1.2.3.4"
37 #   ...
38 # }
39 #
40 # Map assigning DNS aliases for service node names
41 # dns_aliases = {
42 #   node1 = ["alias1", "alias2", ...]
43 #   ...
44 # }