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
error_message="Valid values for regions supporting local Zones are: us-east-1, us-west-2, ap-northeast-1, ap-northeast-2, eu-west-2, eu-west-3 and eu-central-1"
13
+
}
14
+
}
15
+
16
+
variable"worker_key_name" {
17
+
type=string
18
+
description="This is your EC2 key name."
19
+
}
20
+
21
+
variable"cluster_name" {
22
+
type=string
23
+
description="This is the name of your EKS cluster deployed to the parent region."
24
+
}
25
+
26
+
variable"managed_node_instance_type" {
27
+
type=string
28
+
default="t3.large"
29
+
description="This is the instance type for your EKS managed nodes."
30
+
}
31
+
variable"haproxy_instance_type" {
32
+
type=string
33
+
default="r5.2xlarge"
34
+
description="This is the instance type for your HAPROXY managed nodes."
35
+
}
36
+
37
+
variable"self_managed_node_instance_type" {
38
+
type=string
39
+
default="r5.2xlarge"
40
+
description="This is the instance type for your EKS self-managed nodes."
41
+
}
42
+
43
+
variable"wavelength_zones" {
44
+
description="This is the metadata for your Wavelength Zone subnets."
45
+
type=map(object({
46
+
availability_zone =string
47
+
nbg =string
48
+
availability_zone_id =string
49
+
worker_nodes =number
50
+
cidr_block =string
51
+
}))
52
+
}
53
+
54
+
# Create variable for HA mode
55
+
variable"ha" {
56
+
description="Enable High Availability mode (yes/no)"
0 commit comments