Skip to content

Commit

Permalink
fix: Fix Perpetual diff changes on workflow_parameters argument
Browse files Browse the repository at this point in the history
  • Loading branch information
fdmsantos committed May 6, 2024
1 parent c5bd120 commit 08dd381
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ variable "workflow_parameters" {
type = map(object({
type = string
defaultValue = any
allowedValues = optional(list(string), null)
allowedValues = optional(list(string), [])
metadata = optional(object({
description = string
}))
description = optional(string, null)
}), { })
}))
default = {}
}
Expand Down

0 comments on commit 08dd381

Please sign in to comment.