You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`databricks_scim_user` is no longer receiving fixes and will be removed in `0.3`, please rewrite using `databricks_user` resource, which has more consistent semantics with `databricks_group` and works better with identity provider SCIM sync.
12
-
*`databricks_scim_group` is no longer receiving fixes and will be removed in `0.3`, please rewrite using `databricks_group` resource.
19
+
*`databricks_scim_user` is no longer receiving fixes and will be removed in `0.3`, please rewrite using the `databricks_user` resource, which has more consistent semantics with `databricks_group` and works better with identity provider SCIM sync.
20
+
*`databricks_scim_group` is no longer receiving fixes and will be removed in `0.3`. Please rewrite using the`databricks_group` resource.
13
21
*`databricks_default_user_roles` is no longer receiving fixes and will be removed in `0.3`, please rewrite using `databricks_user` & `databricks_group` resources.
14
22
15
23
**Behavior changes**
@@ -55,4 +63,4 @@ Updated dependency versions:
55
63
*`azure_auth` provider block is no longer receiving fixesand will be removed in `0.3`, please use `azure_*` options
56
64
57
65
**Behavior changes**
58
-
* Previously, mounts code paths were different functions. This release unifies them to be a single testable codebase with different configuration options & re-use of the critical code paths. For maintainability reasons, there's no longer check performed on container & storage account names, but rather on high-level *mount source uri*.
66
+
* Previously, mounts code paths were different functions. This release unifies them to be a single testable codebase with different configuration options & re-use of the critical code paths. For maintainability reasons, there's no longer check performed on container & storage account names, but rather on high-level *mount source uri*.
| [Contributing and Development Guidelines](CONTRIBUTING.md)
32
-
33
-
To quickly install the binary please execute the following curl command in your shell or [install provider from source](CONTRIBUTING.md#installing-from-source).
34
-
35
-
If you use Terraform 0.12, please execute the following curl command in your shell:
If you use Terraform 0.13, please refer to instructions specified at [registry page](https://registry.terraform.io/providers/databrickslabs/databricks/latest):
42
45
@@ -45,12 +48,18 @@ terraform {
45
48
required_providers {
46
49
databricks = {
47
50
source = "databrickslabs/databricks"
48
-
version = "0.2.5"
51
+
version = ">= 0.2.6"
49
52
}
50
53
}
51
54
}
52
55
```
53
56
57
+
If you use Terraform 0.12, please execute the following curl command in your shell:
Then create a small sample file, named `main.tf` with approximately following contents. Replace `<your PAT token>` with newly created [PAT Token](https://docs.databricks.com/dev-tools/api/latest/authentication.html). It will create [a simple cluster](https://databrickslabs.github.io/terraform-provider-databricks/resources/cluster/).
0 commit comments