From 0996805dabed2f158baee95fdcc0fa1110386b4c Mon Sep 17 00:00:00 2001 From: Steven Sklar Date: Thu, 26 Aug 2021 14:06:36 -0400 Subject: [PATCH] Changes type of var.extra_container_defs to 'any' This way we can avoid the "all map elements must have the same type" error if we include multiple value types. --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 0e21ac2..4814113 100644 --- a/variables.tf +++ b/variables.tf @@ -39,7 +39,7 @@ variable "cloudwatch_schedule_expression" { } variable "extra_container_defs" { - type = map(any) + type = any default = {} description = "Additional configuration that you want to add to your task definition (see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html for all options)" }