-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for creating Azure Data Explorer tables and ingestion mappings. #6392
Comments
I've created an initial draft for a resource resource "azurerm_kusto_database_table" "test" {
name = "table1"
resource_group_name = azurerm_resource_group.test.name
cluster_name = azurerm_kusto_cluster.test.name
database_name = azurerm_kusto_database.test.name
doc_string = "Optional Docstring"
folder = "Optional Folder"
column {
name = "col1"
type = "guid"
}
column {
name = "col2"
type = "dynamic"
}
} see master...jrauschenbusch:r-kusto-database-table for a Diff to the current master state. I already tested it a bit and it seems like it works as expected. Some notes:
@tombuildsstuff @mbfrahry Please let me know what you think about it. This would be (together with another resource |
Unfortunately there is no progress here due to the lack of a PR review from Hashicorp. Maybe the used
Please vote up the related PR to increase the visibility and importance of this new resource as some related resources (Event Grid and IoT Hub Data connections) will only become available if this one and the mapping table resource are ready to use. |
FWIW - here's a separate provider implementation: https://github.com/favoretti/terraform-provider-adx |
@ManojRaheja I think this ticket can be closed as there is now a separate provider implementation. Or is there something missing? |
I'll close this one, since there's a separate provider now. We could potentially reconsider this in the future, but I suppose a separate provider solves the problem for now. Thank you. |
Okay to close this PR, my team is looking any alternate option to build a generic module to run any ADX control command. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Description
Support for creating Azure Data Explorer tables and ingestion mappings. This is required to enable e2e automated deployment of Azure Data Explorer solution that includes creating cluster, creating database, setting database permissions, creating tables, creating ingestion mappings, and creating data connections.
New or Affected Resource(s)
References
Related Issue: #5553
Documentation: Create table, Create data mappings
The text was updated successfully, but these errors were encountered: