-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
variables.tf
76 lines (61 loc) · 2.03 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
variable "region" {
type = string
description = "AWS Region"
}
variable "availability_zones" {
type = list(string)
description = "List of availability zones"
}
variable "cluster_name" {
type = string
description = "The name of the EKS cluster"
}
variable "cluster_endpoint" {
type = string
description = "EKS cluster endpoint"
}
variable "cluster_certificate_authority_data" {
type = string
description = "The base64 encoded certificate data required to communicate with the cluster"
}
variable "cluster_security_group_ingress_enabled" {
type = bool
description = "Whether to enable the EKS cluster Security Group as ingress to workers Security Group"
}
variable "cluster_security_group_id" {
type = string
description = "Security Group ID of the EKS cluster"
default = ""
}
variable "instance_type" {
type = string
description = "Instance type to launch"
}
variable "max_size" {
type = number
description = "The maximum size of the autoscale group"
}
variable "min_size" {
type = number
description = "The minimum size of the autoscale group"
}
variable "health_check_type" {
type = string
description = "Controls how health checking is done. Valid values are `EC2` or `ELB`"
}
variable "wait_for_capacity_timeout" {
type = string
description = "A maximum duration that Terraform should wait for ASG instances to be healthy before timing out. Setting this to '0' causes Terraform to skip all Capacity Waiting behavior"
}
variable "autoscaling_policies_enabled" {
type = bool
description = "Whether to create `aws_autoscaling_policy` and `aws_cloudwatch_metric_alarm` resources to control Auto Scaling"
}
variable "cpu_utilization_high_threshold_percent" {
type = number
description = "The value against which the specified statistic is compared"
}
variable "cpu_utilization_low_threshold_percent" {
type = number
description = "The value against which the specified statistic is compared"
}