Skip to content

Commit 59c12c7

Browse files
authored
Release v0.4.9 (#1104)
* Release v0.4.9 # Version changelog ## 0.4.9 * Prevent creation of `databricks_group` with `users` and `admins` reserved names ([#1089](#1089)). * Added support for shared clusters in multi-task `databricks_job` ([#1082](#1082)). * Added diff suppression for `external_id` in `databricks_group` ([#1099](#1099)). * Added diff suppression for `external_id` in `databricks_user` ([#1097](#1097)). * Added `users`, `service_principals`, and `child_groups` exported properties to `databricks_group` data resource ([#1085](#1085)). * Added various documentation improvements.
1 parent 5d7bfc2 commit 59c12c7

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ terraform {
7979
required_providers {
8080
databricks = {
8181
source = "databrickslabs/databricks"
82-
version = "0.4.8"
82+
version = "0.4.9"
8383
}
8484
}
8585
}

common/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import "context"
44

55
var (
6-
version = "0.4.8"
6+
version = "0.4.9"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ terraform {
5454
required_providers {
5555
databricks = {
5656
source = "databrickslabs/databricks"
57-
version = "0.4.8"
57+
version = "0.4.9"
5858
}
5959
aws = {
6060
source = "hashicorp/aws"

docs/guides/unity-catalog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ terraform {
3838
required_providers {
3939
databricks = {
4040
source = "databrickslabs/databricks"
41-
version = "0.4.8"
41+
version = "0.4.9"
4242
}
4343
aws = {
4444
source = "hashicorp/aws"

docs/guides/workspace-management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ terraform {
1111
required_providers {
1212
databricks = {
1313
source = "databrickslabs/databricks"
14-
version = "0.4.8"
14+
version = "0.4.9"
1515
}
1616
}
1717
}

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ terraform {
338338
required_providers {
339339
databricks = {
340340
source = "databrickslabs/databricks"
341-
version = "0.4.8"
341+
version = "0.4.9"
342342
}
343343
}
344344
}

scim/acceptance/data_group_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func createUuid() string {
2626
}
2727

2828
func TestAccGroupDataSplitMembers(t *testing.T) {
29-
if cloudEnv, ok := os.LookupEnv("CLOUD_ENV"); !ok && cloudEnv != "azure" {
29+
if cloudEnv, ok := os.LookupEnv("CLOUD_ENV"); !ok || cloudEnv != "azure" {
3030
t.Skip("This test will only run on Azure. For simplicity.")
3131
}
3232

scripts/gcp-integration/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ output "databricks_host" {
7777
value = databricks_mws_workspaces.this.workspace_url
7878
}
7979

80-
output "databricks_token" {
80+
output "token" {
8181
value = databricks_mws_workspaces.this.token[0].token_value
8282
sensitive = true
8383
}

0 commit comments

Comments
 (0)