adding storage blob to storage account

This commit is contained in:
2025-04-15 20:04:45 -05:00
parent a483cfc7ad
commit b0d43ee51a
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
resource "azurerm_storage_blob" "storage_blob" {
count = length(var.storage_blobs)
name = var.storage_blobs[count.index].name
storage_account_name = azurerm_storage_account.storage_account.name
storage_container_name = var.storage_blobs[count.index].name
type = var.storage_blobs[count.index].type
content_type = var.storage_blobs[count.index].content_type
source = var.storage_blobs[count.index].source
}