-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
74 lines (56 loc) · 1.24 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
variable "name" {}
variable "cpu" { default = 10 }
variable "memory" { default = 512 }
variable "memory_reservation" { default = "__NOT_DEFINED__" }
variable "image" { default = "amazon/amazon-ecs-sample" }
variable "region" { default = "us-east-1" }
variable "vpc_id" {}
variable "environment" {}
variable "log_retention_days" {
default = "7"
}
variable "cluster_iam_role" {}
variable "cluster_id" {}
variable "port_mappings" {
type = "list"
default = [
{ "containerPort" = "80" }
]
}
variable "entrypoint" {
default = ""
}
variable "cmd" {
type = "list"
default = []
}
variable "environment_vars" {
type = "map"
default = {
"__NOT_DEFINED__" = "__NOT_DEFINED__"
}
}
variable "mount_points" {
type = "list"
default = [
{
"hostPath" = "__NOT_DEFINED__",
"containerPath" = "__NOT_DEFINED__",
"readOnly" = "__NOT_DEFINED__"
},
{
"hostPath" = "__NOT_DEFINED__",
"containerPath" = "__NOT_DEFINED__",
"readOnly" = "__NOT_DEFINED__"
},
{
"hostPath" = "__NOT_DEFINED__",
"containerPath" = "__NOT_DEFINED__",
"readOnly" = "__NOT_DEFINED__"
}
]
}
variable "task_definition" {
default = "__NOT_DEFINED__"
}
variable "task_count" { default = 1 }