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
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -24,17 +24,17 @@ variable "vpc_id" {
24
24
}
25
25
26
26
variable"availability_zones" {
27
-
type=list(string)
27
+
type=list
28
28
description="List of Availability Zones"
29
29
}
30
30
31
31
variable"public_subnets_ids" {
32
-
type=list(string)
32
+
type=list
33
33
description="List of Public Subnets IDs"
34
34
}
35
35
36
36
variable"private_subnets_ids" {
37
-
type=list(string)
37
+
type=list
38
38
description="List of Private Subnets IDs"
39
39
}
40
40
@@ -54,7 +54,7 @@ variable "container_name" {
54
54
}
55
55
56
56
variable"command" {
57
-
type=list(string)
57
+
type=list
58
58
description="The command that is passed to the container"
59
59
default=[""]
60
60
}
@@ -66,7 +66,7 @@ variable "container_cpu" {
66
66
}
67
67
68
68
variable"container_depends_on" {
69
-
type=list(string)
69
+
type=list
70
70
description="The dependencies defined for container startup and shutdown. A container can contain multiple dependencies. When a dependency is defined for container startup, for container shutdown it is reversed"
description="Container DNS servers. This is a list of strings specifying the IP addresses of the DNS servers."
89
89
default=[]
90
90
}
91
91
92
92
variable"entrypoint" {
93
-
type=list(string)
93
+
type=list
94
94
description="The entry point that is passed to the container"
95
95
default=[""]
96
96
}
97
97
98
98
variable"environment" {
99
-
type=list(string)
99
+
type=list
100
100
description="The environment variables to pass to the container. This is a list of maps. Each map should contain `name` and `value`"
101
101
default=[]
102
102
}
@@ -108,13 +108,13 @@ variable "essential" {
108
108
}
109
109
110
110
variable"healthcheck" {
111
-
type=map(string)
111
+
type=map
112
112
description="A map containing command (string), interval (duration in seconds), retries (1-10, number of times to retry before marking container unhealthy, and startPeriod (0-300, optional grace period to wait, in seconds, before failed healthchecks count toward retries)"
113
113
default={}
114
114
}
115
115
116
116
variable"links" {
117
-
type=list(string)
117
+
type=list
118
118
description="List of container names this container can communicate with without port mappings."
119
119
default=[]
120
120
}
@@ -129,7 +129,7 @@ locals {
129
129
}
130
130
131
131
variable"mount_points" {
132
-
type=list(string)
132
+
type=list
133
133
description="Container mount points. This is a list of maps, where each map should contain a `containerPath` and `sourceVolume`"
description="Container repository credentials; required when using a private repo. This map currently supports a single key; \"credentialsParameter\", which should be the ARN of a Secrets Manager's secret holding the credentials"
156
156
default={}
157
157
}
158
158
159
159
variable"secrets" {
160
-
type=list(string)
160
+
type=list
161
161
description="The secrets to pass to the container. This is a list of maps"
162
162
default=[]
163
163
}
@@ -168,7 +168,7 @@ variable "stop_timeout" {
168
168
}
169
169
170
170
variable"ulimits" {
171
-
type=list(string)
171
+
type=list
172
172
description="Container ulimit settings. This is a list of maps, where each map should contain \"name\", \"hardLimit\" and \"softLimit\""
173
173
default=[]
174
174
}
@@ -179,7 +179,7 @@ variable "user" {
179
179
}
180
180
181
181
variable"volumes_from" {
182
-
type=list(string)
182
+
type=list
183
183
description="A list of VolumesFrom maps which contain \"sourceContainer\" (name of the container that has the volumes to mount) and \"readOnly\" (whether the container can write to the volume)."
184
184
default=[]
185
185
}
@@ -199,13 +199,13 @@ variable "ipc_mode" {
199
199
}
200
200
201
201
variable"placement_constraints" {
202
-
type=list(string)
202
+
type=list
203
203
description="A set of placement constraints rules that are taken into consideration during task placement. Maximum number of placement_constraints is 10. This is a list of maps, where each map should contain \"type\" and \"expression\""
204
204
default=[]
205
205
}
206
206
207
207
variable"proxy_configuration" {
208
-
type=list(string)
208
+
type=list
209
209
description="The proxy configuration details for the App Mesh proxy. This is a list of maps, where each map should contain \"container_name\", \"properties\" and \"type\""
0 commit comments