-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
66 lines (65 loc) · 1.13 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
## Unknown vars
variable "alb_container_name" {}
variable "alb_container_port" {}
variable "project" {}
variable "cluster_name" {}
variable "custom_url" {}
variable "domain" {}
variable "public_subnet_ids" {
type = "list"
}
variable "alb_security_groups" {
type = "list"
}
variable "environment" {}
variable "health_check_path" {}
variable "task_definition" {}
## Defaulted vars
variable "alb_internal_bool" {
default = "true"
}
variable "domain_zone_id" {
}
variable "service_desired_count" {
default = 1
}
variable "region" {
default = "us-east-1"
}
variable "cpu_threshold_up" {
default = 60
}
variable "cpu_up_evaluation_periods" {
default = 3
}
variable "cpu_up_time_period" {
default = 60
}
variable "cpu_up_cooldown" {
default = 240
}
variable "cpu_threshold_down" {
default = 20
}
variable "cpu_down_evaluation_periods" {
default = 1
}
variable "cpu_down_time_period" {
default = 300
}
variable "cpu_down_cooldown" {
default = 300
}
variable "service_asg_min_cap" {
default = 1
}
variable "service_asg_max_cap" {
default = 3
}
variable "port" {
default = 80
}
variable "vpc_id" {
}
variable "ecs_service_role_name" {
}