Skip to content

Commit

Permalink
converted to empty objects instead of empty lists
Browse files Browse the repository at this point in the history
  • Loading branch information
zachreborn committed Mar 28, 2024
1 parent 174c63f commit e1a88e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/aws/s3/bucket/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -184,22 +184,22 @@ variable "lifecycle_rules" {
status = string
abort_incomplete_multipart_upload = optional(object({
days_after_initiation = number
}), [])
}), {})
expiration = optional(object({
date = optional(string)
days = optional(number)
expired_object_delete_marker = optional(bool)
}), [])
}), {})
filter = optional(object({
object_size_greater_than = optional(number)
object_size_less_than = optional(number)
prefix = optional(string)
tag = optional(map(string))
}), [])
}), {})
noncurrent_version_expiration = optional(object({
newer_noncurrent_versions = optional(number)
noncurrent_days = optional(number)
}), [])
}), {})
noncurrent_version_transitions = optional(list(object({
newer_noncurrent_versions = optional(number)
noncurrent_days = optional(number)
Expand Down

0 comments on commit e1a88e0

Please sign in to comment.