Skip to content

Commit

Permalink
feat: lower default delete retention policies (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
hknutsen authored Mar 14, 2024
1 parent b5e2ddd commit dd0780f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,19 @@ variable "last_access_time_enabled" {
variable "blob_delete_retention_policy_days" {
description = "The number of days that deleted blobs should be retained."
type = number
default = 35
default = 7
}

variable "blob_container_delete_retention_policy_days" {
description = "The number of days that deleted blob containers should be retained."
type = number
default = 35
default = 7
}

variable "blob_restore_policy_days" {
description = "The number of days in the past to set the maximum point-in-time restore point for containers. Set value to `0` to disable."
type = number
default = 30
default = 6
}

variable "blob_cors_rules" {
Expand All @@ -135,7 +135,7 @@ variable "blob_cors_rules" {
variable "share_retention_policy_days" {
description = "The number of days that files should be retained."
type = number
default = 30
default = 7
}

variable "system_assigned_identity_enabled" {
Expand Down

0 comments on commit dd0780f

Please sign in to comment.