Skip to content

Commit

Permalink
Change string -> any (#67)
Browse files Browse the repository at this point in the history
The code expects a map: https://github.com/cn-terraform/terraform-aws-ecs-fargate-service/blob/main/main.tf#L117

Something like:
`{
    type = string
 }`
  • Loading branch information
JaredDarling authored Feb 7, 2023
1 parent 65aa758 commit 3a842a0
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 @@ -75,7 +75,7 @@ variable "ordered_placement_strategy" {

variable "deployment_controller" {
description = "(Optional) Deployment controller"
type = list(string)
type = list(any)
default = []
}

Expand Down

0 comments on commit 3a842a0

Please sign in to comment.