Skip to content

Commit c55fd38

Browse files
authored
Prepare version 0.3.1 (#528)
1 parent ca5679c commit c55fd38

File tree

8 files changed

+25
-32
lines changed

8 files changed

+25
-32
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,29 @@
22

33
## 0.3.1
44

5-
* Added `databricks_global_init_script` resource to configure global init scripts ([#487](https://github.com/databrickslabs/terraform-provider-databricks/issues/487))
5+
* Added `databricks_global_init_script` resource to configure global init scripts ([#487](https://github.com/databrickslabs/terraform-provider-databricks/issues/487)).
6+
* Added `databricks_sql_endpoint` resource ([#498](https://github.com/databrickslabs/terraform-provider-databricks/pull/498))
7+
* Added [experimental resource exporter](https://github.com/databrickslabs/terraform-provider-databricks/blob/master/docs/guides/experimental-exporter.md) to generate configuration for entire workspace.
8+
* Improved user-facing documentaiton ([#508](https://github.com/databrickslabs/terraform-provider-databricks/pull/508/files), [#516](https://github.com/databrickslabs/terraform-provider-databricks/pull/516), [#511](https://github.com/databrickslabs/terraform-provider-databricks/pull/511), [#504](https://github.com/databrickslabs/terraform-provider-databricks/pull/504), [#492]([Update docs in various places](https://github.com/databrickslabs/terraform-provider-databricks/pull/492)))
9+
* Simplified authentication issues debugging ([#490](https://github.com/databrickslabs/terraform-provider-databricks/pull/490))
10+
* Made cleaner error message for no config profile ([#491](https://github.com/databrickslabs/terraform-provider-databricks/pull/491))
11+
* Allow tokens without comment or expiration ([#495](https://github.com/databrickslabs/terraform-provider-databricks/pull/495/files))
12+
* Ensured consistent slashes in notebook paths for different OSes ([#500](https://github.com/databrickslabs/terraform-provider-databricks/pull/500))
13+
* Fix error message panic in command result parsing ([#502](https://github.com/databrickslabs/terraform-provider-databricks/pull/502))
14+
* Updated `databricks_group` data resource to allow non-alphanumeric characters in group name filter ([#507](https://github.com/databrickslabs/terraform-provider-databricks/pull/507/files))
615

716
**Behavior changes**
817

918
* Assigning any permission to `admins` would result in an error, so that behavior is consistent ([#486](https://github.com/databrickslabs/terraform-provider-databricks/issues/486)).
1019

20+
Updated dependency versions:
21+
22+
* github.com/zclconf/go-cty from 1.2.1 to 1.7.1
23+
* github.com/Azure/go-autorest/autorest/azure/auth from 0.5.6 to 0.5.7
24+
* github.com/hashicorp/hcl/v2 from 2.3.0 to 2.8.2
25+
* github.com/aws/aws-sdk-go from 1.37.1 to 1.37.11
26+
* github.com/Azure/go-autorest/autorest from 0.11.17 to 0.11.18
27+
1128
## 0.3.0
1229

1330
* Added configurable provisioning timeout for `databricks_mws_workspaces`, so that local DNS cache issues would be more tolerated.

docs/guides/workspace-management.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -228,29 +228,3 @@ resource "databricks_ip_access_list" "only_me" {
228228
depends_on = [databricks_workspace_conf.this]
229229
}
230230
```
231-
232-
## Part 5: SQL Analytics
233-
234-
You can configure [databricks_sql_endpoint](../resources/sql_endpoint.md) and access to it:
235-
236-
```hcl
237-
resource "databricks_sql_endpoint" "this" {
238-
name = "Endpoint of ${data.databricks_current_user.me.alphanumeric}"
239-
cluster_size = "Small"
240-
max_num_clusters = 1
241-
}
242-
243-
resource "databricks_permissions" "endpoint_usage" {
244-
sql_endpoint_id = databricks_sql_endpoint.this.id
245-
246-
access_control {
247-
group_name = databricks_group.spectators.display_name
248-
permission_level = "CAN_USE"
249-
}
250-
251-
access_control {
252-
user_name = databricks_user.dummy.user_name
253-
permission_level = "CAN_MANAGE"
254-
}
255-
}
256-
```

docs/resources/mws_credentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "AWS"
2+
subcategory: "AWS Workspace Creation"
33
---
44
# databricks_mws_credentials Resource
55

docs/resources/mws_customer_managed_keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "AWS"
2+
subcategory: "AWS Workspace Creation"
33
---
44
# databricks_mws_customer_managed_keys Resource
55

docs/resources/mws_networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "AWS"
2+
subcategory: "AWS Workspace Creation"
33
---
44
# databricks_mws_networks Resource
55

docs/resources/mws_storage_configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "AWS"
2+
subcategory: "AWS Workspace Creation"
33
---
44
# databricks_mws_storage_configurations Resource
55

docs/resources/mws_workspaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
subcategory: "AWS"
2+
subcategory: "AWS Workspace Creation"
33
---
44
# databricks_mws_workspaces resource
55

docs/resources/sql_endpoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ subcategory: "SQL Analytics"
33
---
44
# databricks_sql_endpoint Resource
55

6+
-> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html). Contact your Databricks representative to request access.
7+
68
To create [SQL endpoints](https://docs.databricks.com/sql/get-started/concepts.html) you must have `allow_sql_analytics_access` on your [databricks_group](group.md#allow_sql_analytics_access) or [databricks_user](user.md#allow_sql_analytics_access).
79

810
## Example usage

0 commit comments

Comments
 (0)