Skip to content

Commit 94c9d75

Browse files
authored
Release v0.6.0 (#1362)
* Added `delta_sharing_*` support to `databricks_metastore` ([#1334](#1334)). * Added `databricks_git_credentials` pat discovery from common environment variables ([#1353](#1353)). * Added `databricks_permissions` for `databricks_pipeline` ([#1361](#1361)). * Added `network_id` to `network` block in `databricks_mws_workspaces` for GCP ([#1360](#1360)). * Added `azure_managed_identity` block to `databricks_storage_credential` and `databricks_metastore_data_access` resources ([#1354](#1354)). * Update docs regarding importing of `databricks_sql_*` resources ([#1349](#1349)). * Apply ownership for UC objects during creation ([#1338](#1338)). * Re-create purged cluster for `databricks_mount` for Google Storage ([#1333](#1333)). * Various documentation fixes ([#1350](#1350)). Updated dependency versions: * Bump google.golang.org/api from 0.80.0 to 0.81.0 * Bump gopkg.in/ini.v1 from 1.66.4 to 1.66.6 * Bump google.golang.org/api from 0.81.0 to 0.82.0 * Bump github.com/stretchr/testify from 1.7.1 to 1.7.2 * Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.16.0 to 2.17.0
1 parent 7bca37b commit 94c9d75

File tree

11 files changed

+49
-29
lines changed

11 files changed

+49
-29
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Version changelog
22

3+
## 0.6.0
4+
5+
* Added `delta_sharing_*` support to `databricks_metastore` ([#1334](https://github.com/databrickslabs/terraform-provider-databricks/pull/1334)).
6+
* Added `databricks_git_credentials` pat discovery from common environment variables ([#1353](https://github.com/databrickslabs/terraform-provider-databricks/pull/1353)).
7+
* Added `databricks_permissions` for `databricks_pipeline` ([#1361](https://github.com/databrickslabs/terraform-provider-databricks/pull/1361)).
8+
* Added `network_id` to `network` block in `databricks_mws_workspaces` for GCP ([#1360](https://github.com/databrickslabs/terraform-provider-databricks/pull/1360)).
9+
* Added `azure_managed_identity` block to `databricks_storage_credential` and `databricks_metastore_data_access` resources ([#1354](https://github.com/databrickslabs/terraform-provider-databricks/pull/1354)).
10+
* Update docs regarding importing of `databricks_sql_*` resources ([#1349](https://github.com/databrickslabs/terraform-provider-databricks/pull/1349)).
11+
* Apply ownership for UC objects during creation ([#1338](https://github.com/databrickslabs/terraform-provider-databricks/pull/1338)).
12+
* Re-create purged cluster for `databricks_mount` for Google Storage ([#1333](https://github.com/databrickslabs/terraform-provider-databricks/pull/1333)).
13+
* Various documentation fixes ([#1350](https://github.com/databrickslabs/terraform-provider-databricks/pull/1350)).
14+
15+
Updated dependency versions:
16+
17+
* Bump google.golang.org/api from 0.80.0 to 0.81.0
18+
* Bump gopkg.in/ini.v1 from 1.66.4 to 1.66.6
19+
* Bump google.golang.org/api from 0.81.0 to 0.82.0
20+
* Bump github.com/stretchr/testify from 1.7.1 to 1.7.2
21+
* Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.16.0 to 2.17.0
22+
323
## 0.5.9
424

525
* Added warning section for debug mode ([#1325](https://github.com/databrickslabs/terraform-provider-databricks/pull/1325)).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ terraform {
8282
required_providers {
8383
databricks = {
8484
source = "databrickslabs/databricks"
85-
version = "0.5.9"
85+
version = "0.6.0"
8686
}
8787
}
8888
}

common/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import "context"
44

55
var (
6-
version = "0.5.9"
6+
version = "0.6.0"
77
// ResourceName is resource name without databricks_ prefix
88
ResourceName contextKey = 1
99
// Provider is the current instance of provider

docs/guides/aws-workspace.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,10 @@ Code that creates workspaces and code that [manages workspaces](workspace-manage
259259

260260
```hcl
261261
resource "databricks_mws_workspaces" "this" {
262-
provider = databricks.mws
263-
account_id = var.databricks_account_id
264-
aws_region = var.region
265-
workspace_name = local.prefix
262+
provider = databricks.mws
263+
account_id = var.databricks_account_id
264+
aws_region = var.region
265+
workspace_name = local.prefix
266266
267267
credentials_id = databricks_mws_credentials.this.credentials_id
268268
storage_configuration_id = databricks_mws_storage_configurations.this.storage_configuration_id

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ terraform {
342342
required_providers {
343343
databricks = {
344344
source = "databrickslabs/databricks"
345-
version = "0.5.9"
345+
version = "0.6.0"
346346
}
347347
}
348348
}

docs/resources/group.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ Creating group in AWS Databricks account:
4848
```hcl
4949
// initialize provider at account-level
5050
provider "databricks" {
51-
alias = "mws"
52-
host = "https://accounts.cloud.databricks.com"
51+
alias = "mws"
52+
host = "https://accounts.cloud.databricks.com"
5353
account_id = "00000000-0000-0000-0000-000000000000"
54-
username = var.databricks_account_username
55-
password = var.databricks_account_password
54+
username = var.databricks_account_username
55+
password = var.databricks_account_password
5656
}
5757
5858
resource "databricks_group" "this" {

docs/resources/metastore_data_access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ resource "databricks_metastore_data_access" "this" {
6969
metastore_id = databricks_metastore.this.id
7070
name = "mi_dac"
7171
azure_managed_identity {
72-
access_connector_id = var.access_connector_id
72+
access_connector_id = var.access_connector_id
7373
}
7474
is_default = true
7575
}

docs/resources/mws_workspaces.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ resource "databricks_mws_networks" "this" {
6565
6666
// create workspace in given VPC with DBFS on root bucket
6767
resource "databricks_mws_workspaces" "this" {
68-
provider = databricks.mws
69-
account_id = var.databricks_account_id
70-
workspace_name = var.prefix
71-
aws_region = var.region
68+
provider = databricks.mws
69+
account_id = var.databricks_account_id
70+
workspace_name = var.prefix
71+
aws_region = var.region
7272
7373
credentials_id = databricks_mws_credentials.this.credentials_id
7474
storage_configuration_id = databricks_mws_storage_configurations.this.storage_configuration_id
@@ -177,10 +177,10 @@ resource "databricks_mws_storage_configurations" "this" {
177177
}
178178
179179
resource "databricks_mws_workspaces" "this" {
180-
provider = databricks.mws
181-
account_id = var.databricks_account_id
182-
workspace_name = local.prefix
183-
aws_region = "us-east-1"
180+
provider = databricks.mws
181+
account_id = var.databricks_account_id
182+
workspace_name = local.prefix
183+
aws_region = "us-east-1"
184184
185185
credentials_id = databricks_mws_credentials.this.credentials_id
186186
storage_configuration_id = databricks_mws_storage_configurations.this.storage_configuration_id

docs/resources/service_principal.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ Creating service principal in AWS Databricks account:
4848
```hcl
4949
// initialize provider at account-level
5050
provider "databricks" {
51-
alias = "mws"
52-
host = "https://accounts.cloud.databricks.com"
51+
alias = "mws"
52+
host = "https://accounts.cloud.databricks.com"
5353
account_id = "00000000-0000-0000-0000-000000000000"
54-
username = var.databricks_account_username
55-
password = var.databricks_account_password
54+
username = var.databricks_account_username
55+
password = var.databricks_account_password
5656
}
5757
5858
resource "databricks_service_principal" "sp" {

docs/resources/storage_credential.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ resource "databricks_storage_credential" "external_sp" {
4747
resource "databricks_storage_credential" "external_mi" {
4848
name = "mi_credential"
4949
azure_managed_identity {
50-
access_connector_id = var.access_connector_id
50+
access_connector_id = var.access_connector_id
5151
}
5252
comment = "Managed identity credential managed by TF"
5353
}

0 commit comments

Comments
 (0)