You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2023. It is now read-only.
description="All GCP resources will be launched in this Zone."
8
+
}
9
+
10
+
variable"cluster_name" {
11
+
description="The name of the Nomad cluster (e.g. nomad-stage). This variable is used to namespace all resources created by this module."
12
+
}
13
+
14
+
variable"cluster_tag_name" {
15
+
description="The tag name the Compute Instances will look for to automatically discover each other and form a cluster. TIP: If running more than one Nomad cluster, each cluster should have its own unique tag name."
description="The name of the VPC Network where all resources should be created."
25
+
default="default"
26
+
}
27
+
28
+
# Firewall Ports
29
+
30
+
variable"http_port" {
31
+
description="The port used by Nomad to handle incoming HTPT (API) requests."
32
+
default=4646
33
+
}
34
+
35
+
variable"rpc_port" {
36
+
description="The port used by Nomad to handle incoming RPC requests."
37
+
default=4647
38
+
}
39
+
40
+
variable"serf_port" {
41
+
description="The port used by Nomad to handle incoming serf requests."
42
+
default=4648
43
+
}
44
+
45
+
variable"allowed_inbound_cidr_blocks_http" {
46
+
description="A list of CIDR-formatted IP address ranges from which the Compute Instances will allow connections to Nomad on the port specified by var.http_port."
47
+
type="list"
48
+
default=[]
49
+
}
50
+
51
+
variable"allowed_inbound_tags_http" {
52
+
description="A list of tags from which the Compute Instances will allow connections to Nomad on the port specified by var.http_port."
53
+
type="list"
54
+
default=[]
55
+
}
56
+
57
+
variable"allowed_inbound_cidr_blocks_rpc" {
58
+
description="A list of CIDR-formatted IP address ranges from which the Compute Instances will allow connections to Nomad on the port specified by var.rpc_port."
59
+
type="list"
60
+
default=[]
61
+
}
62
+
63
+
variable"allowed_inbound_tags_rpc" {
64
+
description="A list of tags from which the Compute Instances will allow connections to Nomad on the port specified by var.rpc_port."
65
+
type="list"
66
+
default=[]
67
+
}
68
+
69
+
variable"allowed_inbound_cidr_blocks_serf" {
70
+
description="A list of CIDR-formatted IP address ranges from which the Compute Instances will allow connections to Nomad on the port specified by var.serf_port."
71
+
type="list"
72
+
default=[]
73
+
}
74
+
75
+
variable"allowed_inbound_tags_serf" {
76
+
description="A list of tags from which the Compute Instances will allow connections to Nomad on the port specified by var.serf_port."
0 commit comments