From 08dd381d9eec5b8cfbd69f7e6a0de81579fec6b3 Mon Sep 17 00:00:00 2001 From: Fabio Santos Date: Mon, 6 May 2024 10:53:20 +0100 Subject: [PATCH] fix: Fix Perpetual diff changes on `workflow_parameters` argument --- variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/variables.tf b/variables.tf index a9a2530..2a302de 100644 --- a/variables.tf +++ b/variables.tf @@ -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 = {} }