20482: Fixes formatting.
[arvados.git] / tools / salt-install / terraform / aws / vpc / terraform.tfvars
index 32480f879a3325092e32f711917abe11a3de8e89..bbc5f84958df40cff6c44ef7a7b9f3cc42a52c71 100644 (file)
@@ -2,7 +2,8 @@
 #
 # 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"
 
@@ -12,7 +13,32 @@ region_name = "us-east-1"
 # 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-"
-# sg_id = "sg-"
-# public_subnet_id = "subnet-"
-# private_subnet_id = "subnet-"
\ No newline at end of file
+# 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