Skip to content

Commit 20dd55d

Browse files
fix: update aws_s3_bucket_lifecycle_configuration (#59)
1 parent 630337e commit 20dd55d

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [4.3.0] - 2025-04-04
9+
10+
[Compare with previous version](https://github.com/sparkfabrik/terraform-aws-eks-bootstrap/compare/4.2.0...4.3.0)
11+
12+
### Updated
13+
14+
- Update module `aws_s3_bucket_lifecycle_configuration` parameters
15+
816
## [4.2.0] - 2025-03-25
917

1018
[Compare with previous version](https://github.com/sparkfabrik/terraform-aws-eks-bootstrap/compare/4.1.0...4.2.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ The patches will add the special toleration to the resources, allowing them to b
172172
| <a name="module_fluentbit"></a> [fluentbit](#module\_fluentbit) | github.com/sparkfabrik/terraform-helm-fluentbit | 0.4.0 |
173173
| <a name="module_gitlab_runner"></a> [gitlab\_runner](#module\_gitlab\_runner) | github.com/sparkfabrik/terraform-aws-eks-gitlab-runner | 4e020f8 |
174174
| <a name="module_iam_assumable_role_with_oidc_for_eks_addons"></a> [iam\_assumable\_role\_with\_oidc\_for\_eks\_addons](#module\_iam\_assumable\_role\_with\_oidc\_for\_eks\_addons) | terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc | ~> 5.0 |
175-
| <a name="module_ingress_nginx"></a> [ingress\_nginx](#module\_ingress\_nginx) | github.com/sparkfabrik/terraform-helm-ingress-nginx | 0.7.0 |
175+
| <a name="module_ingress_nginx"></a> [ingress\_nginx](#module\_ingress\_nginx) | github.com/sparkfabrik/terraform-helm-ingress-nginx | 0.8.0 |
176176
| <a name="module_kube_prometheus_stack"></a> [kube\_prometheus\_stack](#module\_kube\_prometheus\_stack) | github.com/sparkfabrik/terraform-sparkfabrik-prometheus-stack | 3.0.0 |
177177
| <a name="module_load_balancer_controller_irsa_role"></a> [load\_balancer\_controller\_irsa\_role](#module\_load\_balancer\_controller\_irsa\_role) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | ~> 5.17 |
178178
| <a name="module_node_termination_handler_irsa_role"></a> [node\_termination\_handler\_irsa\_role](#module\_node\_termination\_handler\_irsa\_role) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | ~> 5.17 |

velero.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ resource "aws_s3_bucket_public_access_block" "velero" {
8484
resource "aws_s3_bucket_lifecycle_configuration" "velero" {
8585
count = var.enable_velero && var.enable_velero_bucket_lifecycle ? 1 : 0
8686
bucket = aws_s3_bucket.velero[0].id
87+
transition_default_minimum_object_size = "varies_by_storage_class"
8788

8889
rule {
8990
id = "dumps"
@@ -101,6 +102,8 @@ resource "aws_s3_bucket_lifecycle_configuration" "velero" {
101102
expiration {
102103
days = var.velero_bucket_expiration_days
103104
}
105+
106+
filter {}
104107
}
105108
}
106109

0 commit comments

Comments
 (0)