File tree 3 files changed +0
-14
lines changed
3 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,6 @@ No modules.
201
201
| [ databricks_secret_scope.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/secret_scope ) | resource |
202
202
| [ databricks_service_principal.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/service_principal ) | resource |
203
203
| [ databricks_sql_endpoint.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_endpoint ) | resource |
204
- | [ databricks_sql_global_config.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_global_config ) | resource |
205
204
| [ databricks_system_schema.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/system_schema ) | resource |
206
205
| [ databricks_token.pat] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/token ) | resource |
207
206
| [ databricks_user.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/user ) | resource |
Original file line number Diff line number Diff line change @@ -104,12 +104,6 @@ resource "databricks_cluster" "cluster" {
104
104
}
105
105
}
106
106
}
107
-
108
- lifecycle {
109
- ignore_changes = [
110
- state
111
- ]
112
- }
113
107
}
114
108
115
109
resource "databricks_cluster_policy" "this" {
Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ resource "databricks_ip_access_list" "this" {
27
27
}
28
28
29
29
# SQL Endpoint
30
- resource "databricks_sql_global_config" "this" {
31
- count = anytrue (var. sql_endpoint [* ]. enable_serverless_compute ) ? 1 : 0
32
-
33
- enable_serverless_compute = true
34
- }
35
-
36
30
resource "databricks_sql_endpoint" "this" {
37
31
for_each = { for endpoint in var . sql_endpoint : (endpoint. name ) => endpoint }
38
32
@@ -49,7 +43,6 @@ resource "databricks_sql_endpoint" "this" {
49
43
lifecycle {
50
44
ignore_changes = [state , num_clusters ]
51
45
}
52
- depends_on = [databricks_sql_global_config . this ]
53
46
}
54
47
55
48
resource "databricks_system_schema" "this" {
You can’t perform that action at this time.
0 commit comments