From 3db19589f7c41293d419945d6a3dc14e1490e4c0 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Fri, 18 Apr 2025 15:42:57 -0500 Subject: [PATCH] adding static web to storage account --- modules/storage/static_website.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/storage/static_website.tf b/modules/storage/static_website.tf index 078d510..a67186c 100644 --- a/modules/storage/static_website.tf +++ b/modules/storage/static_website.tf @@ -1,5 +1,5 @@ resource "azurerm_storage_account_static_website" "static_website" { - count = length(var.storage_tables) + count = length(var.static_websites) storage_account_id = azurerm_storage_account.storage_account.id error_404_document = var.static_websites[count.index].error_404_document index_document = var.static_websites[count.index].index_document