Skip to content

Commit

Permalink
Release v0.4.9 (databricks#1104)
Browse files Browse the repository at this point in the history
* Release v0.4.9

# Version changelog

## 0.4.9

* Prevent creation of `databricks_group` with `users` and `admins` reserved names ([databricks#1089](databricks#1089)).
* Added support for shared clusters in multi-task `databricks_job` ([databricks#1082](databricks#1082)).
* Added diff suppression for `external_id` in `databricks_group` ([databricks#1099](databricks#1099)).
* Added diff suppression for `external_id` in `databricks_user` ([databricks#1097](databricks#1097)).
* Added `users`, `service_principals`, and `child_groups` exported properties to `databricks_group` data resource ([databricks#1085](databricks#1085)).
* Added various documentation improvements.
  • Loading branch information
nfx authored Feb 11, 2022
1 parent 388cc87 commit bd82885
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package common
import "context"

var (
version = "0.4.8"
version = "0.4.9"
// ResourceName is resource name without databricks_ prefix
ResourceName contextKey = 1
// Provider is the current instance of provider
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/aws-workspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
aws = {
source = "hashicorp/aws"
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/unity-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
aws = {
source = "hashicorp/aws"
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/workspace-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion scim/acceptance/data_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func createUuid() string {
}

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

Expand Down

0 comments on commit bd82885

Please sign in to comment.