updating modules

This commit is contained in:
2025-08-23 09:22:51 -05:00
parent 597dd42da6
commit cbb8b677cf
9 changed files with 88 additions and 15 deletions

View File

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