-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
54 lines (39 loc) · 1.05 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
variable "region" {}
variable "account_id" {}
variable "environment" {}
variable "name_prefix" {}
variable "common_tags" {
type = map(string)
}
variable "vpc_cidr" {}
variable "private_subnets" {
type = list(string)
}
variable "database_subnets" {
type = list(string)
}
variable "public_subnets" {
type = list(string)
}
variable "db_master_username" {
sensitive = true
}
variable "db_master_password" {
sensitive = true
}
variable "db_min_capacity" {}
variable "db_max_capacity" {}
variable "db_autopause" {}
variable "db_autopause_after_seconds" {}
variable "task_cpu" {}
variable "task_memory" {}
variable "task_desired_count" {}
variable "log_retention_in_days" {}
variable "container_image_url" {}
variable "container_name" {}
variable "container_port" {}
variable "ecs_service_autoscaling_min_capacity" {}
variable "ecs_service_autoscaling_max_capacity" {}
variable "ecs_service_autoscaling_cpu_average_utilization_target" {}
variable "ecs_service_autoscaling_scale_in_cooldown" {}
variable "ecs_service_autoscaling_scale_out_cooldown" {}