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
description="One or more files containing the environment variables to pass to the container. This maps to the --env-file option to docker run. The file must be hosted in Amazon S3. This option is only available to tasks using the EC2 launch type. This is a list of maps"
130
-
default=null
130
+
default=[]
131
131
}
132
132
133
133
variable"secrets" {
@@ -136,7 +136,7 @@ variable "secrets" {
136
136
valueFrom =string
137
137
}))
138
138
description="The secrets to pass to the container. This is a list of maps"
139
-
default=null
139
+
default=[]
140
140
}
141
141
142
142
variable"readonly_root_filesystem" {
@@ -198,13 +198,13 @@ variable "mount_points" {
198
198
variable"dns_servers" {
199
199
type=list(string)
200
200
description="Container DNS servers. This is a list of strings specifying the IP addresses of the DNS servers"
201
-
default=null
201
+
default=[]
202
202
}
203
203
204
204
variable"dns_search_domains" {
205
205
type=list(string)
206
206
description="Container DNS search domains. A list of DNS search domains that are presented to the container"
207
-
default=null
207
+
default=[]
208
208
}
209
209
210
210
variable"ulimits" {
@@ -235,7 +235,7 @@ variable "volumes_from" {
235
235
variable"links" {
236
236
type=list(string)
237
237
description="List of container names this container can communicate with without port mappings"
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. The condition can be one of START, COMPLETE, SUCCESS or HEALTHY"
253
-
default=null
253
+
default=[]
254
254
}
255
255
256
256
variable"docker_labels" {
@@ -280,7 +280,7 @@ variable "privileged" {
280
280
variable"system_controls" {
281
281
type=list(map(string))
282
282
description="A list of namespaced kernel parameters to set in the container, mapping to the --sysctl option to docker run. This is a list of maps: { namespace = \"\", value = \"\"}"
283
-
default=null
283
+
default=[]
284
284
}
285
285
286
286
variable"hostname" {
@@ -310,7 +310,7 @@ variable "pseudo_terminal" {
310
310
variable"docker_security_options" {
311
311
type=list(string)
312
312
description="A list of strings to provide custom labels for SELinux and AppArmor multi-level security systems."
0 commit comments