Skip to content

Commit

Permalink
Merge pull request #60 from ministryofjustice/change-var-types
Browse files Browse the repository at this point in the history
Change variable types to any() for mixed lists
  • Loading branch information
vijay-veeranki authored Dec 14, 2022
2 parents 64b1fa8 + 46e1cbc commit e9273ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit e9273ec

Please sign in to comment.