terraform-provider-databricks icon indicating copy to clipboard operation
terraform-provider-databricks copied to clipboard

Databricks Terraform Provider

Results 408 terraform-provider-databricks issues
Sort by recently updated
recently updated
newest added

Retrieves the settings of [databricks_job](../resources/job.md) by name or by id. Complements the feature of the [databricks_jobs](jobs.md) data source. ## Example Usage Getting the existing cluster id of specific [databricks_job](../resources/job.md) by...

### Configuration ```hcl terraform { required_version = ">=v0.14.7" } ``` ### Expected Behavior ```hcl resource "databricks_service_principal" "sp" { display_name = "Example service principal" allow_cluster_create = true } ``` The resource...

Hi, ### Configuration ```hcl resource "databricks_sql_endpoint" "this" { name = "Terraform-testing Endpoint" cluster_size = "Large" min_num_clusters = 1 max_num_clusters = 2 auto_stop_mins = 10 } ``` ### Expected Behavior No...

bug

### Configuration # Copy-paste your Terraform configuration here ```hcl resource "databricks_permissions" "token_usage" { provider = databricks.this_workspace depends_on = [var.workspace, databricks_service_principal.this] authorization = "tokens" access_control { service_principal_name = databricks_service_principal.this.application_id permission_level =...

### Affected Resource(s) [cluster](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/cluster) ### Expected Details cluster_log_conf says you can use s3a:// but you get an error if you use it, telling you to use s3:// ### List of...

docs

A user uses a count in databricks_mws_workspaces, so they can define a conditional in the output variable around token. The call to the token API is ok 2022-07-29T20:33:40.252Z [DEBUG] plugin.terraform-provider-databricks_v0.6.1:...

cannot reproduce

I have a wheel library configured and after updating the wheel code I'm no longer able to apply terraform changes. I keep getting: ``` ╷ │ Error: Provider produced inconsistent...

bug
hacktoberfest

I tried importing SQL resources such as `databricks_sql_query`, `databricks_sql_widgets`, and `databricks_sql_visualizations` for an existing dashboard using the experimental exporter as below. Some queries and their respective visualizations weren't exported. ###...

Databricks DLT pipelines provide cluster configuration parameters. Two parameters Policy_id and apply_policy_default_id are available in the Databricks Pipeline API - cluster configuration parameters. This adds them to the provider.

Hi there, In my configurations, I am sequentially building a workspace to thereafter enter it and deploy services within it. In doing so, I also create a service principal for...

question