Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
Changes type of var.extra_container_defs to 'any'
Browse files Browse the repository at this point in the history
This way we can avoid the "all map elements must have the same type" error if we include multiple value types.
  • Loading branch information
Steven Sklar authored Aug 26, 2021
1 parent 18faffc commit 0996805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
}
Expand Down

0 comments on commit 0996805

Please sign in to comment.