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
Copy file name to clipboardexpand all lines: variables.tf
+80-38
Original file line number
Diff line number
Diff line change
@@ -2,50 +2,73 @@
2
2
* Required Variables
3
3
*/
4
4
5
-
variable"cluster_id" {
6
-
type=string
7
-
}
8
-
9
5
variable"service_name" {
10
-
type=string
11
-
}
12
-
13
-
variable"service_env" {
14
-
type=string
6
+
description="Name of the service, up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens."
7
+
type=string
15
8
}
16
9
17
10
variable"container_def_json" {
18
-
type=string
11
+
description="A list of valid container definitions provided as a single valid JSON document."
12
+
type=string
19
13
}
20
14
21
15
variable"desired_count" {
22
-
type=string
16
+
description="The number of instances of the task definition to place and keep running."
17
+
type=number
23
18
}
24
19
25
-
variable"lb_container_name" {
26
-
type=string
27
-
}
28
20
29
-
variable"lb_container_port" {
30
-
type=string
21
+
/*
22
+
* Optional Variables
23
+
*/
24
+
25
+
variable"cluster_id" {
26
+
description="ARN of the ECS cluster in which to place this service. If not specified, the default cluster is used."
27
+
type=string
28
+
default=null
31
29
}
32
30
33
-
variable"tg_arn" {
34
-
type=string
31
+
variable"service_env" {
32
+
description="Name of environment, used in naming task definition. Example: \"prod\"."
33
+
type=string
34
+
default="prod"
35
+
}
36
+
37
+
variable"load_balancer" {
38
+
description=<<-EOF
39
+
Configuration block for load balancers.
40
+
Attributes:
41
+
target_group_arn - ARN of the Load Balancer target group to associate with the service.
42
+
container_name - Container name to associate with the load balancer (as it appears in container definition).
43
+
container_port - Port on the container to associate with the load balancer.
44
+
Example:
45
+
[{
46
+
target_group_arn = aws_alb_target_group.this.arn
47
+
container_name = "app"
48
+
container_port = 80
49
+
}]
50
+
EOF
51
+
type=list(object({
52
+
target_group_arn =string
53
+
container_name =string
54
+
container_port =number
55
+
}))
56
+
default=[]
35
57
}
36
58
37
59
variable"ecsServiceRole_arn" {
38
-
type=string
60
+
description=<<-EOF
61
+
ARN of the IAM role that allows Amazon ECS to make calls to your load balancer on your behalf. Required if using a
62
+
load balancer.
63
+
EOF
64
+
type=string
65
+
default=null
39
66
}
40
67
41
-
/*
42
-
* Optional Variables
43
-
*/
44
-
45
68
variable"availability_zone_rebalancing" {
46
-
description=<<EOF
47
-
"When enabled, ECS automatically redistributes tasks within a service across Availability Zones. Must be
48
-
"either \"ENABLED\" or \"DISABLED\"."
69
+
description=<<-EOF
70
+
When enabled, ECS automatically redistributes tasks within a service across Availability Zones. Must be
71
+
either "ENABLED" or "DISABLED".
49
72
EOF
50
73
type=string
51
74
default="DISABLED"
@@ -58,36 +81,55 @@ variable "volumes" {
58
81
}
59
82
60
83
variable"task_role_arn" {
61
-
type=string
62
-
default=""
84
+
description="ARN of IAM role that allows your Amazon ECS container task to make calls to other AWS services."
85
+
type=string
86
+
default=null
63
87
}
64
88
65
89
variable"network_mode" {
66
-
type=string
67
-
default="bridge"
90
+
description=<<-EOF
91
+
Docker networking mode to use for the containers in the task. Valid values are "none", "bridge", "awsvpc",
92
+
and "host".
93
+
EOF
94
+
type=string
95
+
default="bridge"
68
96
}
69
97
70
98
variable"deployment_maximum_percent" {
71
-
type=string
72
-
default=200
99
+
description=<<-EOF
100
+
Upper limit (as a percentage of the service's desiredCount) of the number of running tasks that can be running in a
101
+
service during a deployment.
102
+
EOF
103
+
type=number
104
+
default=200
73
105
}
74
106
75
107
variable"deployment_minimum_healthy_percent" {
76
-
type=string
77
-
default=50
108
+
description=<<-EOF
109
+
Lower limit (as a percentage of the service's desiredCount) of the number of running tasks that must remain running
110
+
and healthy in a service during a deployment.
111
+
EOF
112
+
type=number
113
+
default=50
78
114
}
79
115
80
116
variable"ordered_placement_strategy" {
81
-
description=""
82
-
type=list(any)
117
+
description="Service level strategy rules that are taken into consideration during task placement."
118
+
type=list(object({
119
+
type =string
120
+
field =string
121
+
}))
83
122
default=[{
84
123
type ="spread"
85
124
field ="instanceId"
86
125
}]
87
126
}
88
127
89
128
variable"execution_role_arn" {
90
-
description="The IAM role that allows ECS to make AWS API calls on your behalf, such as to pull container images from ECR when using Fargate or to reference secrets from SSM Parameter Store."
129
+
description=<<-EOF
130
+
The IAM role that allows ECS to make AWS API calls on your behalf, such as to pull container images from ECR when
131
+
using Fargate or to reference secrets from SSM Parameter Store.
0 commit comments