creating storage module

This commit is contained in:
2025-02-24 08:11:09 -06:00
parent 01b3303a38
commit 8217cfb99b
7 changed files with 43 additions and 18 deletions

View File

@@ -0,0 +1,5 @@
resource "azurerm_storage_table" "storage_table" {
count = length(var.storage_tables)
name = var.storage_tables[count.index]
storage_account_name = azurerm_storage_account.storage_account.name
}