diff --git a/terraform/storage.tf b/terraform/storage.tf index c5d0d5cae9..737b29434b 100644 --- a/terraform/storage.tf +++ b/terraform/storage.tf @@ -5,6 +5,11 @@ resource "azurerm_storage_account" "main" { account_tier = "Standard" account_replication_type = "RAGRS" + blob_properties { + last_access_time_enabled = true + versioning_enabled = true + } + lifecycle { ignore_changes = [tags] }