From fd77843f7f1510fccce18b17aa456b52084e69f4 Mon Sep 17 00:00:00 2001 From: Aidan Feldman Date: Mon, 27 Jun 2022 17:25:13 +0000 Subject: [PATCH] chore: enable versioning on the storage account For safety, in case a fixture configuration change breaks something. --- terraform/storage.tf | 5 +++++ 1 file changed, 5 insertions(+) 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] }