hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.6k stars 4.64k forks source link

Support for ADX Provider #26187

Closed ascdi closed 5 months ago

ascdi commented 5 months ago

Is there an existing issue for this?

Community Note

Description

We would need a provider to set up ADX. Similar like the one by favoretti, but from an official source.

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

none

Potential Terraform Configuration

provider "azurerm_adx" {
  tenant_id       = "***"
}

resource "azurerm_adx_table" "test" {
  name          = "Test1"
  database_name = "test-db"

  column {
    name = "id"
    type = "int"
  }
  column {
    name = "key"
    type = "string"
  }
  column {
    name = "value"
    type = "int"
  }
}

resource "azurerm_adx_table_mapping" "test" {
  name          = "TestMapping"
  database_name = "test-db"
  table_name    = azurerm_adx_table.test.name
  kind          = "Json"

  mapping {
    column   = "f1"
    path     = "$.f1"
    datatype = "string"
  }
  mapping {
    column   = "f2"
    path     = "$.f2"
    datatype = "string"
  }
}


### References

_No response_
katbyte commented 5 months ago

Hi @ascdi,

While i thank you for opening an issue this repo is only for the azurerm provider. At this time we have no intention of creating an official hashicorp ADX provider and i would recomend using the one @favoretti created.

As such i am going to close this.

ascdi commented 5 months ago

Actually it already exists but is named kusto_cluster.

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kusto_cluster

github-actions[bot] commented 4 months ago

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. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.