Skip to content

Commit

Permalink
Merge pull request #11 from podaac/release/0.1.2
Browse files Browse the repository at this point in the history
Define a lifecycle policy for EFS
  • Loading branch information
cqbanh authored Feb 14, 2024
2 parents 39355cb + d8a82f2 commit 89a946c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terraform/generate-efs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ resource "aws_efs_file_system" "generate_efs_fs" {
creation_token = var.prefix
encrypted = true
performance_mode = "generalPurpose"
lifecycle_policy {
transition_to_ia = "AFTER_1_DAY"
}
tags = { Name = "${var.prefix}" }
}

Expand Down

0 comments on commit 89a946c

Please sign in to comment.