Azure / terraform-azurerm-avm-res-storage-storageaccount

This Terraform module is designed to create Azure Storage Accounts and its related resources, including blob containers, queues, tables, and file shares. It also supports the creation of a storage account private endpoint which provides secure and direct connectivity to Azure Storage over a private network.
https://registry.terraform.io/modules/Azure/avm-res-storage-storageaccount
MIT License
19 stars 27 forks source link

Support for data lake gen2 filesystem #156

Closed pieter-jangoeman closed 3 days ago

pieter-jangoeman commented 1 week ago

Is there an existing issue for this?

Description

Hi, it would be handy to include the option to make a storage account a data lake as well.

New or Affected Resource(s)/Data Source(s)

azurerm_storage_data_lake_gen2_filesystem

Potential Terraform Configuration

resource "azurerm_storage_data_lake_gen2_filesystem" "data_lakes_containers" {
  for_each = var.containers

  name               = each.value
  storage_account_id = azurerm_storage_account.data_lake_storage_account.id

  depends_on = [azurerm_role_assignment.data_lake_role_assignment]
}

References

No response

chinthakaru commented 1 week ago

@pieter-jangoeman, thank you for your request. The issue has already been addressed, and we plan to release the update early next week.

pieter-jangoeman commented 1 week ago

That's great, thanks!