20482: Fixes formatting.
[arvados.git] / tools / salt-install / terraform / aws / vpc / terraform.tfvars
index 9cc96437dc898d86913d4883693d6391b242be61..bbc5f84958df40cff6c44ef7a7b9f3cc42a52c71 100644 (file)
@@ -2,9 +2,43 @@
 #
 # SPDX-License-Identifier: CC-BY-SA-3.0
 
-region_name = "us-east-1"
+# Main cluster configurations. No sensible defaults provided for these:
+# region_name = "us-east-1"
 # cluster_name = "xarv1"
 # domain_name = "xarv1.example.com"
 
 # Uncomment this to create an non-publicly accessible Arvados cluster
-# private_only = true
\ No newline at end of file
+# private_only = true
+
+# Optional networking options. Set existing resources to be used instead of
+# creating new ones.
+# NOTE: We only support fully managed or fully custom networking, not a mix of both.
+# vpc_id = "vpc-aaaa"
+# sg_id = "sg-bbbb"
+# public_subnet_id = "subnet-cccc"
+# private_subnet_id = "subnet-dddd"
+
+# Optional custom tags to add to every resource. Default: {}
+# custom_tags = {
+#   environment = "production"
+#   project = "Phoenix"
+#   owner = "jdoe"
+# }
+
+# Optional cluster service nodes configuration:
+#
+# List of node names which either will be hosting user-facing or internal services
+# user_facing_hosts = ["node1", "node2", ...]
+# internal_service_hosts = ["node3", ...]
+#
+# Map assigning each node name an internal IP address
+# private_ip = {
+#   node1 = "1.2.3.4"
+#   ...
+# }
+#
+# Map assigning DNS aliases for service node names
+# dns_aliases = {
+#   node1 = ["alias1", "alias2", ...]
+#   ...
+# }
\ No newline at end of file