Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
We have numerous data factories that are reading/writing to gen 1 data lakes. I see there's support for a gen 2 datalake. Need support for writing to gen 1 datalakes. I tried modeling it after a gen 2 datalake linked service, trying azurerm_data_factory_linked_service_data_lake_storage_gen1 and azurerm_data_factory_linked_service_data_lake_storage. nothing. Need support for linked services using a gen 1 datalake store.
New or Affected Resource(s)
azurerm_data_factory
Potential Terraform Configuration
provider "azurerm" {
version = ">=2.0.0"
features {}
}
resource "azurerm_data_factory_linked_service_data_lake_storage" "example" {}
Error: unknown resource type: azurerm_data_factory_linked_service_data_lake_storage
with the recent accountment that microsoft will no longer support gen 1 datalake's (we got 3 years), I guess this becomes a low priority request, and may no longer be needed...
Community Note
Description
We have numerous data factories that are reading/writing to gen 1 data lakes. I see there's support for a gen 2 datalake. Need support for writing to gen 1 datalakes. I tried modeling it after a gen 2 datalake linked service, trying azurerm_data_factory_linked_service_data_lake_storage_gen1 and azurerm_data_factory_linked_service_data_lake_storage. nothing. Need support for linked services using a gen 1 datalake store.
New or Affected Resource(s)
Potential Terraform Configuration
References
0000