-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
variables-deprecated.tf
44 lines (38 loc) · 1.72 KB
/
variables-deprecated.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
variable "lifecycle_rule_enabled" {
type = bool
default = false
description = <<-EOF
DEPRECATED: Defaults to `false`, use `lifecycle_configuration_rules` instead.
When `true`, configures lifecycle events on this bucket using individual (now deprecated) variables."
EOF
}
variable "enable_glacier_transition" {
type = bool
default = true
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nEnables the transition to AWS Glacier which can cause unnecessary costs for huge amount of small files"
}
variable "glacier_transition_days" {
type = number
default = 60
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nNumber of days after which to move the data to the Glacier Flexible Retrieval storage tier"
}
variable "expiration_days" {
type = number
default = 90
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nNumber of days after which to expunge the objects"
}
variable "noncurrent_version_expiration_days" {
type = number
default = 90
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nSpecifies when non-current object versions expire (in days)"
}
variable "noncurrent_version_transition_days" {
type = number
default = 30
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nSpecifies (in days) when noncurrent object versions transition to Glacier Flexible Retrieval"
}
variable "standard_transition_days" {
type = number
default = 30
description = "(Deprecated, use `lifecycle_configuration_rules` instead)\nNumber of days to persist in the standard storage tier before moving to the infrequent access tier"
}