From 46e1cbce48793e90cadf11b88cd08edefcbde394 Mon Sep 17 00:00:00 2001 From: jakemulley Date: Wed, 14 Dec 2022 19:18:15 +0000 Subject: [PATCH] Change variable types to any() for mixed lists --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index df88e02..c954dfc 100644 --- a/variables.tf +++ b/variables.tf @@ -86,13 +86,13 @@ variable "log_path" { variable "lifecycle_rule" { description = "lifecycle" default = [] - type = list(any) + type = any # list(any) } variable "cors_rule" { description = "cors rule" default = [] - type = list(any) + type = any # list(any) } variable "enable_allow_block_pub_access" {