This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
forked from cloudposse/terraform-aws-s3-bucket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lifecycle.tf
248 lines (224 loc) · 11 KB
/
lifecycle.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
locals {
/*
# full_lifecycle_rule_schema is just for documentation, not actually used.
full_lifecycle_rule_schema = {
enabled = true # bool
id = null # string, must be specified and unique
abort_incomplete_multipart_upload_days = null # number
filter_prefix_only = null # string See https://github.com/hashicorp/terraform-provider-aws/issues/23882
filter_and = {
object_size_greater_than = null # integer >= 0
object_size_less_than = null # integer >= 1
prefix = null # string
tags = {} # map(string)
}
expiration = {
date = null # string
days = null # integer > 0
expired_object_delete_marker = null # bool
}
noncurrent_version_expiration = {
newer_noncurrent_versions = null # integer > 0
noncurrent_days = null # integer >= 0
}
transition = [{
date = null # string
days = null # integer > 0
storage_class = null # string/enum, one of GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR.
}]
noncurrent_version_transition = [{
newer_noncurrent_versions = null # integer >= 0
noncurrent_days = null # integer >= 0
storage_class = null # string/enum, one of GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR.
}]
}
*/
lifecycle_configuration_rules = var.lifecycle_configuration_rules == null ? [] : var.lifecycle_configuration_rules
# Normalize the input, filling in missing fields
normalized_lifecycle_configuration_rules = [for rule in local.lifecycle_configuration_rules : {
enabled = rule.enabled
id = rule.id
abort_incomplete_multipart_upload_days = rule.abort_incomplete_multipart_upload_days # number
# Due to https://github.com/hashicorp/terraform-provider-aws/issues/23882
# we have to treat having only the `prefix` set differently than having any other setting.
filter_prefix_only = (try(rule.filter_and.object_size_greater_than, null) == null &&
try(rule.filter_and.object_size_less_than, null) == null &&
try(length(rule.filter_and.tags), 0) == 0 &&
try(length(rule.filter_and.prefix), 0) > 0) ? rule.filter_and.prefix : null
filter_and = (try(rule.filter_and.object_size_greater_than, null) == null &&
try(rule.filter_and.object_size_less_than, null) == null &&
try(length(rule.filter_and.tags), 0) == 0) ? null : {
object_size_greater_than = try(rule.filter_and.object_size_greater_than, null)
object_size_less_than = try(rule.filter_and.object_size_less_than, null)
prefix = try(length(rule.filter_and.prefix), 0) == 0 ? null : rule.filter_and.prefix
tags = try(length(rule.filter_and.tags), 0) == 0 ? {} : rule.filter_and.tags
}
# We use "!= true" because it covers !null as well as !false, and allows the "null" option to be on the same line.
expiration = (try(rule.expiration.date, null) == null &&
try(rule.expiration.days, null) == null &&
try(rule.expiration.expired_object_delete_marker, null) == null) ? null : {
date = try(rule.expiration.date, null)
days = try(rule.expiration.days, null)
expired_object_delete_marker = try(rule.expiration.expired_object_delete_marker, null)
}
noncurrent_version_expiration = (try(rule.noncurrent_version_expiration.noncurrent_days, null) == null &&
try(rule.noncurrent_version_expiration.newer_noncurrent_versions, null) == null) ? null : {
newer_noncurrent_versions = try(rule.noncurrent_version_expiration.newer_noncurrent_versions, null)
noncurrent_days = try(rule.noncurrent_version_expiration.noncurrent_days, null)
}
transition = rule.transition == null ? [] : [for t in rule.transition : {
date = try(t.date, null)
days = try(t.days, null)
storage_class = t.storage_class
} if try(t.date, null) != null || try(t.days, null) != null]
noncurrent_version_transition = rule.noncurrent_version_transition == null ? [] : [
for t in rule.noncurrent_version_transition :
{
newer_noncurrent_versions = try(t.newer_noncurrent_versions, null)
noncurrent_days = try(t.noncurrent_days, null)
storage_class = t.storage_class
} if try(t.newer_noncurrent_versions, null) != null || try(t.noncurrent_days, null) != null
]
}]
# Backwards compatibility: translate old `lifecycle_rules` variable to new format
lifecycle_rules = var.lifecycle_rules == null ? [] : var.lifecycle_rules
normalized_lifecycle_rules = [for i, rule in local.lifecycle_rules : {
enabled = rule.enabled
id = try(var.lifecycle_rule_ids[i], "rule-${i + 1}")
abort_incomplete_multipart_upload_days = rule.abort_incomplete_multipart_upload_days # number
filter_prefix_only = try(length(rule.prefix), 0) > 0 && try(length(rule.tags), 0) == 0 ? rule.prefix : null
filter_and = try(length(rule.tags), 0) == 0 ? null : {
object_size_greater_than = null # integer >= 0
object_size_less_than = null # integer >= 1
prefix = rule.prefix == "" ? null : rule.prefix # string
tags = rule.tags == null ? {} : rule.tags # map(string)
}
# We use "!= true" because it covers !null as well as !false, and allows the "null" option to be on the same line.
expiration = rule.enable_current_object_expiration != true ? null : {
date = null # string
days = rule.expiration_days # integer > 0
expired_object_delete_marker = null # bool
}
noncurrent_version_expiration = rule.enable_noncurrent_version_expiration != true ? null : {
newer_noncurrent_versions = null # integer > 0
noncurrent_days = rule.noncurrent_version_expiration_days # integer >= 0
}
transition = concat(
rule.enable_standard_ia_transition != true ? [] :
[{
date = null # string
days = rule.standard_transition_days # integer >= 0
storage_class = "STANDARD_IA"
}],
rule.enable_glacier_transition != true ? [] :
[{
date = null # string
days = rule.glacier_transition_days # integer >= 0
storage_class = "GLACIER"
}],
rule.enable_deeparchive_transition != true ? [] :
[{
date = null # string
days = rule.deeparchive_transition_days # integer >= 0
storage_class = "DEEP_ARCHIVE"
}],
)
noncurrent_version_transition = concat(
# In the old `lifecycle_rules` variable, `enable_glacier_transition`
# enabled the transition for both current and non-current version.
rule.enable_glacier_transition != true ? [] :
[{
newer_noncurrent_versions = null # integer >= 0
noncurrent_days = rule.noncurrent_version_glacier_transition_days # integer >= 0
storage_class = "GLACIER"
}],
# In the old `lifecycle_rules` variable, `enable_deeparchive_transition`
# enabled the transition for both current and non-current version.
rule.enable_deeparchive_transition != true ? [] :
[{
newer_noncurrent_versions = null # integer >= 0
noncurrent_days = rule.noncurrent_version_deeparchive_transition_days # integer >= 0
storage_class = "DEEP_ARCHIVE"
}],
)
}]
lc_rules = concat(local.normalized_lifecycle_rules, local.normalized_lifecycle_configuration_rules)
}
resource "aws_s3_bucket_lifecycle_configuration" "default" {
count = local.enabled && length(local.lc_rules) > 0 ? 1 : 0
bucket = local.bucket_id
dynamic "rule" {
for_each = local.lc_rules
content {
id = rule.value.id
status = rule.value.enabled == true ? "Enabled" : "Disabled"
# Filter is always required due to https://github.com/hashicorp/terraform-provider-aws/issues/23299
dynamic "filter" {
for_each = rule.value.filter_prefix_only == null && rule.value.filter_and == null ? ["empty"] : []
content {}
}
# When only specifying `prefix`, do not use `and` due to https://github.com/hashicorp/terraform-provider-aws/issues/23882
dynamic "filter" {
for_each = rule.value.filter_prefix_only == null ? [] : ["prefix"]
content {
prefix = rule.value.filter_prefix_only
}
}
# When specifying more than 1 filter criterion, use `and`
dynamic "filter" {
for_each = rule.value.filter_and == null ? [] : ["and"]
content {
and {
object_size_greater_than = rule.value.filter_and.object_size_greater_than
object_size_less_than = rule.value.filter_and.object_size_less_than
prefix = rule.value.filter_and.prefix
tags = rule.value.filter_and.tags
}
}
}
dynamic "abort_incomplete_multipart_upload" {
for_each = rule.value.abort_incomplete_multipart_upload_days == null ? [] : [1]
content {
days_after_initiation = rule.value.abort_incomplete_multipart_upload_days
}
}
dynamic "expiration" {
for_each = rule.value.expiration == null ? [] : [rule.value.expiration]
content {
date = expiration.value.date
days = expiration.value.days
expired_object_delete_marker = expiration.value.expired_object_delete_marker
}
}
dynamic "noncurrent_version_expiration" {
for_each = rule.value.noncurrent_version_expiration == null ? [] : [rule.value.noncurrent_version_expiration]
iterator = expiration
content {
newer_noncurrent_versions = expiration.value.newer_noncurrent_versions
noncurrent_days = expiration.value.noncurrent_days
}
}
dynamic "transition" {
for_each = rule.value.transition
content {
date = transition.value.date
days = transition.value.days
storage_class = transition.value.storage_class
}
}
dynamic "noncurrent_version_transition" {
for_each = rule.value.noncurrent_version_transition
iterator = transition
content {
newer_noncurrent_versions = transition.value.newer_noncurrent_versions
noncurrent_days = transition.value.noncurrent_days
storage_class = transition.value.storage_class
}
}
}
}
depends_on = [
# versioning must be set before lifecycle configuration
aws_s3_bucket_versioning.default
]
}