Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform/backup-infrastructure/prod/aws-backup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ module "destination" {
source_account_id = local.source_account_id
kms_key = aws_kms_key.destination_backup_key.arn
enable_vault_protection = true
vault_lock_type = "compliance"
vault_lock_min_retention_days = 28
vault_lock_type = "governance"
vault_lock_min_retention_days = 2
vault_lock_max_retention_days = 400
}

Expand Down
4 changes: 2 additions & 2 deletions terraform/backup-infrastructure/test/aws-backup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ module "destination" {
kms_key = aws_kms_key.destination_backup_key.arn
enable_vault_protection = false
vault_lock_type = "governance"
vault_lock_min_retention_days = 4
vault_lock_max_retention_days = 105
vault_lock_min_retention_days = 2
vault_lock_max_retention_days = 35
}

###
Expand Down
Loading