Skip to content

Commit d21739e

Browse files
committed
Fixing formatting issues
1 parent 28304a7 commit d21739e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ variable "container_memory_reservation" {
3131
}
3232

3333
variable "container_definition" {
34-
type = map
34+
type = map(any)
3535
description = "Container definition overrides which allows for extra keys or overriding existing keys."
3636
default = {}
3737
}
@@ -189,7 +189,7 @@ variable "firelens_configuration" {
189189
}
190190

191191
variable "mount_points" {
192-
type = list
192+
type = list(any)
193193

194194
description = "Container mount points. This is a list of maps, where each map should contain a `containerPath` and `sourceVolume`. The `readOnly` key is optional."
195195
default = []
@@ -330,13 +330,13 @@ variable "ecs_task_execution_role_custom_policies" {
330330

331331
variable "placement_constraints" {
332332
description = "(Optional) 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\""
333-
type = list
333+
type = list(any)
334334
default = []
335335
}
336336

337337
variable "proxy_configuration" {
338338
description = "(Optional) 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\""
339-
type = list
339+
type = list(any)
340340
default = []
341341
}
342342

0 commit comments

Comments
 (0)